Start support for second level

This commit is contained in:
Dr-Noob
2018-03-24 18:18:31 +01:00
parent bb0fde5c8b
commit 2a81e344e6
3 changed files with 422 additions and 0 deletions

9
main.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "02h.h"
int main() {
struct level2* level2 = fillLevel2(level2);
debugLevel2(level2);
freeLevel2(level2);
}