CalcCity/src/main.c

16 lines
240 B
C
Raw Normal View History

2021-10-31 15:12:30 +01:00
#include "core.h"
2021-10-23 18:51:28 +02:00
2021-10-10 15:08:56 +02:00
int main(void)
{
2021-10-23 18:51:28 +02:00
title_screen();
2021-10-31 15:12:30 +01:00
// Game initialisation
2021-10-23 18:51:28 +02:00
struct calccity calccity;
struct camera camera;
struct map map;
default_values(&calccity, &camera, &map);
2021-10-10 15:08:56 +02:00
2021-10-31 15:12:30 +01:00
main_loop(&calccity, &camera, &map);
2021-10-10 15:08:56 +02:00
return 1;
2021-10-23 18:51:28 +02:00
}