diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-23 07:31:22 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-23 07:31:22 -0500 |
commit | 0396f428411eb015f796643f9e7e38ca97f8fd42 (patch) | |
tree | c8aa0afcd640d5dff42c07b06ab81886e400516b /main.cpp | |
parent | f67648a124655305c3e8947fe312b97ccf74e2fd (diff) | |
parent | 28539cb9804a2bda8a7d94ec078b1b60ac3ded06 (diff) |
Villages!
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 24 |
1 files changed, 10 insertions, 14 deletions
@@ -124,8 +124,6 @@ GLuint shaderProgram; GLuint colorIndex; GLuint mouseTex; -Mix_Chunk *crickets; - /* * loops is used for texture animation. It is believed to be passed to entity * draw functions, although it may be externally referenced instead. @@ -170,27 +168,25 @@ void mainLoop(void); vec2 offset; /* OFFSET!!!!!!!!!!!!!!!!!!!! */ -float shit = 0; -Menu* currentMenu; -Menu pauseMenu; +Menu *currentMenu; Menu optionsMenu; - +Menu pauseMenu; extern WEATHER weather; +extern int fadeIntensity; extern bool fadeEnable; extern bool fadeWhite; extern bool fadeFast; -extern int fadeIntensity; -unsigned int HLINE = 3; -unsigned int SCREEN_WIDTH = 1280; -unsigned int SCREEN_HEIGHT = 720; -bool FULLSCREEN = false; +unsigned int SCREEN_WIDTH; +unsigned int SCREEN_HEIGHT; +unsigned int HLINE; +bool FULLSCREEN; -float VOLUME_MASTER = 50; -float VOLUME_MUSIC = 25; -float VOLUME_SFX = 25; +float VOLUME_MASTER; +float VOLUME_MUSIC; +float VOLUME_SFX; /******************************************************************************* * MAIN ************************************************************************ |