From 526bfc7f5cf8f1624b025cf8719cf6f7b4d96bda Mon Sep 17 00:00:00 2001 From: benditstr Date: Mon, 8 Dec 2025 17:03:13 +0100 Subject: [PATCH] gamestate update --- .idea/modules.xml | 8 ++++++++ CMakeLists.txt | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .idea/modules.xml diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1e3bc79 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index cab6456..4f65977 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,9 @@ set(INCLUDE_DIRS ) # Create the executable target -add_executable(${PROJECT_NAME} ${SRC_FILES}) +add_executable(${PROJECT_NAME} ${SRC_FILES} + raylib/menu.h + src/menu.cpp) # Add include directories to the target target_include_directories(${PROJECT_NAME} PRIVATE ${INCLUDE_DIRS})