summaryrefslogtreecommitdiff
path: root/src/game_state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_state.cpp')
-rw-r--r--src/game_state.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game_state.cpp b/src/game_state.cpp
index d99ca12..5fed683 100644
--- a/src/game_state.cpp
+++ b/src/game_state.cpp
@@ -88,3 +88,8 @@ void GameState::logState()
std::cout << "Spaceship" << spaceship.coords() << std::endl;
}
}
+
+std::vector<bool> GameState::toBitArray() const
+{
+ return std::vector<bool>();
+}