summaryrefslogtreecommitdiff
path: root/src/game_state.cpp
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-08-01 22:50:00 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-08-01 22:50:00 +0200
commit2e6ecf423c8228ac8de4badf4fc2d037a876b7ff (patch)
tree82624e97a3d1ee47db05e320bf0014726f68c09d /src/game_state.cpp
parent1f40ce6f3c710d6339d2001a56f401b6a9dcd525 (diff)
Reading network from file
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>();
+}