Licar/main.c

14 lines
146 B
C
Raw Normal View History

2023-07-21 21:17:49 +02:00
#include <stdio.h>
#include "game.h"
2023-08-03 21:12:23 +02:00
#include "debug.h"
2023-07-21 21:17:49 +02:00
int main(void)
{
2023-08-03 21:12:23 +02:00
LCR_mapLoad(LCR_map0);
LCR_debugPrintCurrentMap();
return 0;
2023-07-21 21:17:49 +02:00
}