From d06d50075b536cecb04ceaf6453980e398d68cb8 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 9 Aug 2025 09:12:04 +0200 Subject: Removed tilemap from stdlib for now --- main.c | 2 -- stdlib/tilemap.lua | 3 --- 2 files changed, 5 deletions(-) delete mode 100644 stdlib/tilemap.lua diff --git a/main.c b/main.c index 99a030d..3530dbc 100644 --- a/main.c +++ b/main.c @@ -12,7 +12,6 @@ #include "stdlib/json.h" #include "stdlib/color.h" #include "stdlib/button.h" -#include "stdlib/tilemap.h" #include "fonts/dejavusans_mono_bold.h" @@ -387,7 +386,6 @@ int main(int argc, char *argv[]) { if (!load_embedded_module(L, json, json_len, "json")) return 1; if (!load_embedded_module(L, color, color_len, "color")) return 1; if (!load_embedded_module(L, button, button_len, "button")) return 1; - if (!load_embedded_module(L, tilemap, tilemap_len, "tilemap")) return 1; // Registring Raylib mappings. lua_register(L, "open_window", l_open_window); diff --git a/stdlib/tilemap.lua b/stdlib/tilemap.lua deleted file mode 100644 index da30c1e..0000000 --- a/stdlib/tilemap.lua +++ /dev/null @@ -1,3 +0,0 @@ -local tilemap = {} - -return tilemap -- cgit v1.2.3