|
diff --git a/main.c b/main.c
|
| ... |
| 12 |
#include "stdlib/json.h" |
12 |
#include "stdlib/json.h" |
| 13 |
#include "stdlib/color.h" |
13 |
#include "stdlib/color.h" |
| 14 |
#include "stdlib/button.h" |
14 |
#include "stdlib/button.h" |
| 15 |
#include "stdlib/tilemap.h" |
|
|
| 16 |
|
15 |
|
| 17 |
#include "fonts/dejavusans_mono_bold.h" |
16 |
#include "fonts/dejavusans_mono_bold.h" |
| 18 |
|
17 |
|
| ... |
| 387 |
if (!load_embedded_module(L, json, json_len, "json")) return 1; |
386 |
if (!load_embedded_module(L, json, json_len, "json")) return 1; |
| 388 |
if (!load_embedded_module(L, color, color_len, "color")) return 1; |
387 |
if (!load_embedded_module(L, color, color_len, "color")) return 1; |
| 389 |
if (!load_embedded_module(L, button, button_len, "button")) return 1; |
388 |
if (!load_embedded_module(L, button, button_len, "button")) return 1; |
| 390 |
if (!load_embedded_module(L, tilemap, tilemap_len, "tilemap")) return 1; |
|
|
| 391 |
|
389 |
|
| 392 |
// Registring Raylib mappings. |
390 |
// Registring Raylib mappings. |
| 393 |
lua_register(L, "open_window", l_open_window); |
391 |
lua_register(L, "open_window", l_open_window); |
| ... |