Block definitions

This commit is contained in:
octospacc 2022-08-03 12:36:10 +02:00
parent 34aba8b35a
commit 53239c3dde
2 changed files with 1 additions and 2 deletions

View File

@ -3,6 +3,7 @@
#define BlocksetNum 5 #define BlocksetNum 5
#define BlockSize 32 #define BlockSize 32
#define ChunkSize 16
struct Block { struct Block {
int Id; int Id;

View File

@ -26,8 +26,6 @@ SDL_Surface * DebugMsg = NULL;
TTF_Font * DebugFont = NULL; TTF_Font * DebugFont = NULL;
SDL_Color DebugTextColor = { 80, 80, 80 }; SDL_Color DebugTextColor = { 80, 80, 80 };
#define ChunkSize 8
bool Quit, DebugMode; bool Quit, DebugMode;
struct UsedKeys { struct UsedKeys {