Place buildings

This commit is contained in:
2023-11-11 07:01:49 +01:00
parent 7513ecc7eb
commit 1908150635
8 changed files with 173 additions and 27 deletions

View File

@@ -5,7 +5,7 @@
#include <raylib.h>
typedef i16 BzTile;
typedef i32 BzTile;
typedef struct BzTilesetDesc {
const char *path;

View File

@@ -1,5 +1,7 @@
project(BreezeTests)
set(CMAKE_C_STANDARD 11)
add_executable(window_test window_test.c)
target_link_libraries(window_test LINK_PRIVATE Breeze)

View File

@@ -2,9 +2,7 @@
#include <breeze.h>
#include <raylib.h>
#define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
#include <rlImGui.h>
#include <cimgui.h>
bool init(int *game) {
rlImGuiSetup(true);