Update more graphics

This commit is contained in:
William 2023-11-06 18:31:32 +00:00
parent 707dd2765b
commit 6e19c4711c
No known key found for this signature in database
12 changed files with 9 additions and 9 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -878,9 +878,9 @@ void Game::StartMenuScreen(bool debugMode)
if (debugFlag)
{
StartGame(GAME_STORY_MODE);
OpenShopMenu();
return;
// StartGame(GAME_STORY_MODE);
// OpenShopMenu();
// return;
}
mode = MAIN_MENU;

View File

@ -7,7 +7,7 @@ struct Level
};
const int LEVEL_COUNT = 5;
const Level LEVEL_STORY_MODE[LEVEL_COUNT + 1] = {
/* const Level LEVEL_STORY_MODE[LEVEL_COUNT + 1] = {
{
8,
265
@ -32,16 +32,16 @@ const Level LEVEL_STORY_MODE[LEVEL_COUNT + 1] = {
1,
60
}
};
} */;
/* const Level LEVEL_STORY_MODE[LEVEL_COUNT + 1] = {
{ 1, 999 },
const Level LEVEL_STORY_MODE[LEVEL_COUNT + 1] = {
{ 1, 999 },
{ 1, 999 },
{ 1, 999 },
{ 1, 999 },
{ 16, 500 },
{ 1, 999 }
}; */
};
const Level LEVEL_TUTORIAL = {

View File

@ -1,6 +1,6 @@
#include "game.h"
const bool DEBUG_MODE = false;
const bool DEBUG_MODE = true;
Game game;
void RenderGame()