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/Stars.rs
Daniel Løvbrøtte Olsen d7baa63e64 Add some types
2019-01-23 21:04:52 +01:00

13 lines
205 B
Rust

struct Star {
resources: u16,
name: String,
ships: u16,
owner: &Player,
infrastructure: Infrastructure
}
struct Infrastructure {
Fabrication: u8,
Science: u8,
Finance: u8
}