mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-26 21:27:38 +02:00
11 lines
133 B
Rust
11 lines
133 B
Rust
|
|
pub trait GameObject {
|
|
fn update(deltaTime: Duration);
|
|
fn render();
|
|
}
|
|
|
|
pub struct Game<GameObjectTypeetc: GameObject> {
|
|
|
|
}
|
|
|