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

pub struct WebhoggPlayer {
    pos: Vec2,
}

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

impl WebhoggGame {
}