summaryrefslogtreecommitdiff
path: root/webhogg/game_server/src/webhogg_game.rs
diff options
context:
space:
mode:
Diffstat (limited to 'webhogg/game_server/src/webhogg_game.rs')
-rw-r--r--webhogg/game_server/src/webhogg_game.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/webhogg/game_server/src/webhogg_game.rs b/webhogg/game_server/src/webhogg_game.rs
new file mode 100644
index 0000000..7b94fcb
--- /dev/null
+++ b/webhogg/game_server/src/webhogg_game.rs
@@ -0,0 +1,13 @@
+use crate::maths::Vec2;
+
+pub struct WebhoggPlayer {
+ pos: Vec2,
+}
+
+pub struct WebhoggGame {
+ player1: WebhoggPlayer,
+ player2: WebhoggPlayer,
+}
+
+impl WebhoggGame {
+}