Neo-Poseidon/game/star.rs

15 lines
261 B
Rust
Raw Normal View History

2019-05-08 01:36:04 +02:00
struct Infrastructre {
factory: u16,
lab: u16,
bank: u16
}
pub struct Star {
2019-05-08 01:42:58 +02:00
owner: Option<&player>,
2019-05-08 01:36:04 +02:00
location: (u16, u16),
name: String,
natural_resources: u16,
infrastructre: Infrastructre,
hypergate: bool,
ships: u16
}