Skip to content

Commit

Permalink
Fixed linker errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Tau5 committed Aug 12, 2022
1 parent 2e122dc commit 37b2b23
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion global.hpp
Original file line number Diff line number Diff line change
@@ -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.";
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

0 comments on commit 37b2b23

Please sign in to comment.