This commit is contained in:
Masashi 2025-12-20 15:09:29 +05:30
commit 0c0cfef186
28 changed files with 220 additions and 331 deletions

View file

@ -1,28 +0,0 @@
#include "suic_app.h"
#include "../libsuicmez/libsuicmez.h"
#include "runtime.h"
void suic_app_init(int width, int height, const char* title) {
suic_init_window(width, height, (char*)title);
suic_set_target_fps(120);
suic_disable_cursor();
}
bool suic_app_should_close(void) {
return suic_window_should_close();
}
void suic_app_frame_begin(void) {
suic_begin_drawing();
suic_clear_background(135, 206, 235, 255);
}
void suic_app_frame_end(void) {
draw_fps(10, 40);
suic_end_drawing();
}
void suic_app_shutdown(void) {
suic_close_window();
}