This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Neo-Poseidon/game/star.rs
Daniel Løvbrøtte Olsen d2cbb431a7 Basic Game object testing
2019-05-09 00:13:15 +02:00

17 lines
308 B
Rust

#[derive(Default,Debug)]
struct Infrastructre {
factory: u16,
lab: u16,
bank: u16
}
#[derive(Default,Debug)]
pub struct Star {
ownerID: Option<u8>,
location: (u16, u16),
name: String,
natural_resources: u16,
infrastructre: Infrastructre,
hypergate: bool,
ships: u16
}