turtlegame/src/activities/overworld.rs

10 lines
231 B
Rust
Raw Normal View History

2024-07-06 13:33:58 +02:00
use comfy::*;
2024-07-06 13:57:47 +02:00
pub mod worldgen;
2024-07-06 13:33:58 +02:00
pub fn draw(_state: &crate::State, _engine: &comfy::EngineContext) {
draw_circle(vec2(0.0, 0.0), 0.5, GREEN, 0);
}
pub fn update(_state: &mut crate::State, _engine: &mut comfy::EngineContext) {}