|
diff --git a/main.c b/main.c
|
| ... |
| 13 |
#include "stdlib/json.h" |
13 |
#include "stdlib/json.h" |
| 14 |
#include "stdlib/color.h" |
14 |
#include "stdlib/color.h" |
| 15 |
#include "stdlib/button.h" |
15 |
#include "stdlib/button.h" |
|
|
16 |
#include "stdlib/helpers.h" |
| 16 |
|
17 |
|
| 17 |
#include "fonts/dejavusans_mono_bold.h" |
18 |
#include "fonts/dejavusans_mono_bold.h" |
| 18 |
|
19 |
|
| ... |
| 593 |
if (!load_embedded_module(L, json, json_len, "json")) return 1; |
594 |
if (!load_embedded_module(L, json, json_len, "json")) return 1; |
| 594 |
if (!load_embedded_module(L, color, color_len, "color")) return 1; |
595 |
if (!load_embedded_module(L, color, color_len, "color")) return 1; |
| 595 |
if (!load_embedded_module(L, button, button_len, "button")) return 1; |
596 |
if (!load_embedded_module(L, button, button_len, "button")) return 1; |
|
|
597 |
if (!load_embedded_module(L, helpers, helpers_len, "helpers")) return 1; |
| 596 |
|
598 |
|
| 597 |
// Registring Raylib mappings. |
599 |
// Registring Raylib mappings. |
| 598 |
lua_register(L, "open_window", l_open_window); |
600 |
lua_register(L, "open_window", l_open_window); |
| ... |