21 lines
370 B
C
21 lines
370 B
C
#include <raylib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "kubo_context.h"
|
|
#include "kubo_window.h"
|
|
|
|
int main() {
|
|
struct kubo_context context;
|
|
kubo_context_init(&context);
|
|
|
|
kubo_window_init();
|
|
|
|
while (!kubo_window_should_close(&context)) {
|
|
kubo_window_tick(&context);
|
|
}
|
|
|
|
kubo_window_cleanup();
|
|
kubo_context_cleanup(&context);
|
|
|
|
return 0;
|
|
}
|