Minor quality of life updates, pause, adjustable window, ability to place all block types.

This commit is contained in:
Jake
2025-05-27 21:57:39 -04:00
parent f4cfde8cf9
commit 585f72a4bd
8 changed files with 112 additions and 61 deletions

View File

@@ -14,5 +14,6 @@
#define TILE_LOG_TOP 6
#define TILE_LOG_SIDE 7
#define TILE_LEAF 8
#define TILE_PLANK 9
#endif

View File

@@ -11,6 +11,7 @@
#define BLOCK_GRAVEL 5 // 5
#define BLOCK_LOG 6 // top 6, sides 7, bottom 6
#define BLOCK_LEAF 7 // 8
#define BLOCK_PLANK 8 // 9
typedef struct {
int id;

View File

@@ -6,7 +6,7 @@
#include "raylib.h"
#define CHUNK_SIZE_X 16
#define CHUNK_SIZE_Y 16
#define CHUNK_SIZE_Y 256
#define CHUNK_SIZE_Z 16