1
0
Fork 0
mirror of https://git.sr.ht/~kikoodx/crystal-tower synced 2024-06-08 03:30:19 +02:00
crystal-tower/src/main.c

11 lines
115 B
C
Raw Normal View History

2021-11-09 22:34:40 +01:00
#include "input.h"
2021-11-09 22:28:28 +01:00
2021-11-09 22:34:40 +01:00
int
main(void)
{
input_init();
while (!input_pressed(K_EXIT))
input_update();
2021-11-09 22:28:28 +01:00
return 1;
}