22 lines
409 B
C
22 lines
409 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(&context);
|
|
|
|
kubo_window_init(&context);
|
|
|
|
while (!kubo_window_should_close(&context)) {
|
|
kubo_window_tick(&context);
|
|
}
|
|
|
|
kubo_window_cleanup(&context);
|
|
kubo_context_cleanup(&context);
|
|
|
|
return 0;
|
|
}
|