13 lines
205 B
Rust
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
|
||
|
}
|