initial code dump

This commit is contained in:
p2r3
2025-08-12 03:51:57 +03:00
parent 94b568d2ac
commit 269e8346eb
17 changed files with 5134 additions and 0 deletions

9
src/worldgen.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef H_WORLDGEN
#define H_WORLDGEN
#include <stdint.h>
uint8_t getBlockAt (int x, int y, int z);
void writeChunkSection (int client_fd, int _x, int _z, int i);
#endif