21 lines
394 B
C
21 lines
394 B
C
#include <raylib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "kubo_context.h"
|
|
#include "kubo_window.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
struct kubo_context *context = kubo_context_init();
|
|
|
|
kubo_window_init(context);
|
|
|
|
while (!kubo_window_should_close(context)) {
|
|
kubo_window_tick(context);
|
|
}
|
|
|
|
kubo_window_cleanup(context);
|
|
kubo_context_cleanup(context);
|
|
|
|
return 0;
|
|
}
|