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 { }