Create block adding functions

This commit is contained in:
Miloslav Ciz 2023-08-03 21:12:23 +02:00
parent 7e8c82fae3
commit e2d12804d2
6 changed files with 225 additions and 18 deletions

8
main.c
View file

@ -1,9 +1,13 @@
#include <stdio.h>
#include "game.h"
#include "debug.h"
int main(void)
{
puts("aaa");
return 1;
LCR_mapLoad(LCR_map0);
LCR_debugPrintCurrentMap();
return 0;
}