From ba3e61ec2b49d6ad8690482f825c4dda9eb7000c Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Wed, 28 Jan 2026 11:29:27 +0100 Subject: Experimental build script --- build.sh | 3 +++ src/Utils/Utils.hpp | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100755 build.sh 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 -- cgit v1.2.3