From 2a9f378c66b28cef1c5ee063cf4d7e4e2889076e Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 13 Feb 2023 22:52:18 +0100 Subject: Created sim::State object to hold overall state of simulation This is seems like it creats even more chaotic binding between the components but it is a very nice and testable intermediate step before moving everything to standalone systems and shoving state into the... well, State. --- sim/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sim/CMakeLists.txt') diff --git a/sim/CMakeLists.txt b/sim/CMakeLists.txt index 27f312b..55dcc60 100644 --- a/sim/CMakeLists.txt +++ b/sim/CMakeLists.txt @@ -7,6 +7,8 @@ add_library( src/FloatingMovement.cpp src/HitPoints.cpp src/RandomSpawner.cpp + src/sim.cpp + src/State.cpp src/systems.cpp src/TeamManager.cpp src/TurretControl.cpp -- cgit v1.1