From 3f69d0ac71d287bb23ef759382013101f1af6f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 12 Nov 2023 14:58:25 +0100 Subject: [PATCH] rename file --- CMakeLists.txt | 2 +- include/{cli_interface.h => state_explorer.h} | 0 src/main.cpp | 2 +- src/{cli_interface.cpp => state_explorer.cpp} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename include/{cli_interface.h => state_explorer.h} (100%) rename src/{cli_interface.cpp => state_explorer.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 951be7f..d5a6633 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ find_package(Boost 1.81 COMPONENTS program_options REQUIRED) include_directories(.) include_directories(${Boost_INCLUDE_DIR}) -add_executable(endgame-analyzer src/main.cpp src/cli_interface.cpp src/download.cpp +add_executable(endgame-analyzer src/main.cpp src/state_explorer.cpp src/download.cpp src/game_state.cpp) target_link_libraries(endgame-analyzer cpr) diff --git a/include/cli_interface.h b/include/state_explorer.h similarity index 100% rename from include/cli_interface.h rename to include/state_explorer.h diff --git a/src/main.cpp b/src/main.cpp index 2d66e07..7d4bb80 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,7 +7,7 @@ #include "game_state.h" #include "download.h" -#include "cli_interface.h" +#include "state_explorer.h" namespace Hanabi { diff --git a/src/cli_interface.cpp b/src/state_explorer.cpp similarity index 100% rename from src/cli_interface.cpp rename to src/state_explorer.cpp