-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |