16 lines
220 B
Rust
16 lines
220 B
Rust
pub(crate) trait GraphicsCommander {}
|
|
|
|
pub struct Cataclysm {
|
|
game_objects:Vec<GameObject>,
|
|
}
|
|
|
|
pub struct GameObject {
|
|
pos:(f64, f64, f64),
|
|
}
|
|
|
|
pub enum ModelKind {
|
|
Cube,
|
|
Complex(),
|
|
}
|
|
|
|
pub struct ResourceReference {}
|