diff options
| author | dawidg81 <dawidgorski.m@gmail.com> | 2026-01-28 11:29:27 +0100 |
|---|---|---|
| committer | dawidg81 <dawidgorski.m@gmail.com> | 2026-01-28 11:29:27 +0100 |
| commit | ba3e61ec2b49d6ad8690482f825c4dda9eb7000c (patch) | |
| tree | 62d23385af1d313d10df5cda5e6c64a82c9759c5 | |
| parent | f34e07b4962f65362afa5ca98759e87929d964bc (diff) | |
Experimental build script
| -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 |
