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