From bd424451b2e758e05da2dd2f7cc68493a63d53f8 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Mon, 16 May 2022 22:44:53 +0200 Subject: [PATCH] Adding main map editor. --- src/main_map_editor.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/main_map_editor.c diff --git a/src/main_map_editor.c b/src/main_map_editor.c new file mode 100644 index 0000000..4242b86 --- /dev/null +++ b/src/main_map_editor.c @@ -0,0 +1,5 @@ +#include +int main() { + map_editor_init (); + map_editor_loop (); +}