Removed tilemap from stdlib for now

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2025-08-09 09:12:04 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2025-08-09 09:12:04 +0200
Commit d06d50075b536cecb04ceaf6453980e398d68cb8 (patch)
-rw-r--r-- main.c 2
-rw-r--r-- stdlib/tilemap.lua 3
2 files changed, 0 insertions, 5 deletions
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);
...
diff --git a/stdlib/tilemap.lua b/stdlib/tilemap.lua
1
local tilemap = {}
  
2
  
  
3
return tilemap