diff options
| -rwxr-xr-x | build.sh | 3 | ||||
| -rw-r--r-- | src/Utils/Utils.hpp | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..47ccdaa --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +g++ -c src/* +g++ *.o -o minesweeper +rm *.o diff --git a/src/Utils/Utils.hpp b/src/Utils/Utils.hpp index a60a64d..e977db4 100644 --- a/src/Utils/Utils.hpp +++ b/src/Utils/Utils.hpp @@ -3,9 +3,9 @@ #ifndef UTILS_HPP class Utils{ - public: - int catchInputInt(int* input); - int catchReturn(int renum); + public: + int catchInputInt(int* input); + int catchReturn(int renum); }; -#endif
\ No newline at end of file +#endif |
