migrate to comfy

This commit is contained in:
luckyturtledev 2024-07-05 23:10:25 +02:00
parent 96e3f6982e
commit e83ec5ce20
4 changed files with 1223 additions and 1925 deletions

9
src/game.rs Normal file
View file

@ -0,0 +1,9 @@
use comfy::*;
use crate::State;
pub fn update(_state: &mut State, _engine: &mut EngineContext) {}
pub fn draw(_state: &State, _engine: &EngineContext) {
draw_circle(vec2(0.0, 0.0), 0.5, RED, 0);
}