Galactica/crates/gameobject/src/handles.rs

6 lines
162 B
Rust
Raw Normal View History

2024-01-08 23:05:07 -08:00
/// A lightweight representation of a ship in the galaxy
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct GameShipHandle {
pub(crate) index: u64,
}