summaryrefslogtreecommitdiff
path: root/webhogg/game_server/src/webhogg_game.rs
blob: 7b94fcb34d0e156de469e98c74120cbad4f17596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::maths::Vec2;

pub struct WebhoggPlayer {
    pos: Vec2,
}

pub struct WebhoggGame {
    player1: WebhoggPlayer,
    player2: WebhoggPlayer,
}

impl WebhoggGame {
}