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