From 37b2b23435a5dc00bf0ddddf34efd31d5a78f625 Mon Sep 17 00:00:00 2001 From: Tau Date: Fri, 12 Aug 2022 21:07:47 +0200 Subject: [PATCH] Fixed linker errors --- global.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/global.hpp b/global.hpp index 71e5d2c..220d423 100644 --- a/global.hpp +++ b/global.hpp @@ -1,5 +1,10 @@ +#ifndef GLOBAL_HPP +#define GLOBAL_HPP + int INITIAL_SCREEN_WIDTH = 640; int INITIAL_SCREEN_HEIGHT = 200; int SCREEN_WIDTH = INITIAL_SCREEN_WIDTH; int SCREEN_HEIGHT = INITIAL_SCREEN_HEIGHT; -const std::string HELP = "Version 3.0 Game of the Year, Press Edition\nHELP\nIn CubiGrav your goal is to get the furthest without touching any obstacle.\nTo do this you can change your position from the roof to the ceiling using th Up and Down keys."; \ No newline at end of file +const std::string HELP = "Version 3.0 Game of the Year, Press Edition\nHELP\nIn CubiGrav your goal is to get the furthest without touching any obstacle.\nTo do this you can change your position from the roof to the ceiling using th Up and Down keys."; + +#endif \ No newline at end of file