diff --git a/rwgame/CMakeLists.txt b/rwgame/CMakeLists.txt index 0dd26253..bd5518cc 100644 --- a/rwgame/CMakeLists.txt +++ b/rwgame/CMakeLists.txt @@ -1,6 +1,8 @@ add_executable(rwgame main.cpp + RWGame.cpp + State.cpp loadingstate.cpp diff --git a/rwgame/RWGame.cpp b/rwgame/RWGame.cpp new file mode 100644 index 00000000..e0bf97da --- /dev/null +++ b/rwgame/RWGame.cpp @@ -0,0 +1,292 @@ +#include "RWGame.hpp" +#include "State.hpp" +#include "loadingstate.hpp" + +#include +#include +#include