game_features 0.1.0

Various helpful constructs for game developement. See the github repository for detailled instructions.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Clan
pub struct UserGroup {
    pub id: i32,
    pub users: Vec<i32>,
}

pub struct UserGroupSettings {
    pub maximum_users: i32,
    pub friendly_fire: bool,
}