From d9981d8d6133d1fec85f97d4e9cfb70a1487b130 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Thu, 2 Jan 2025 14:21:12 +0000 Subject: [PATCH] Rename app/ directory to game/ --- CMakeLists.txt | 2 +- {app => game}/CMakeLists.txt | 0 {app => game}/main.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {app => game}/CMakeLists.txt (100%) rename {app => game}/main.c (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8be2672..0ab86ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,4 +38,4 @@ find_package(SDL2 REQUIRED CONFIG REQUIRED COMPONENTS SDL2 SDL2main) find_package(SDL2_image REQUIRED) add_subdirectory(engine) -add_subdirectory(app) +add_subdirectory(game) diff --git a/app/CMakeLists.txt b/game/CMakeLists.txt similarity index 100% rename from app/CMakeLists.txt rename to game/CMakeLists.txt diff --git a/app/main.c b/game/main.c similarity index 100% rename from app/main.c rename to game/main.c