turtlegame/src/game.rs

12 lines
223 B
Rust
Raw Normal View History

2024-07-05 21:10:25 +00:00
use comfy::*;
use crate::State;
pub fn update(_state: &mut State, _engine: &mut EngineContext) {
info!("update");
}
2024-07-05 21:10:25 +00:00
pub fn draw(_state: &State, _engine: &EngineContext) {
draw_circle(vec2(0.0, 0.0), 0.5, RED, 0);
}