This commit is contained in:
felicianoa237
2024-12-23 11:40:58 -06:00
commit 72674393e3
47 changed files with 4013 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.25)
project(ConsoleMenu C)
set(CMAKE_C_STANDARD 17)
add_executable(ConsoleMenu main.c entities.h console_functions.c player_functions.c entities.c game.c game.h)