summaryrefslogtreecommitdiff
path: root/stdlib/tilemap.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-08-06 11:36:51 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-08-06 11:36:51 +0200
commit116124155ce9a36b50c0b606154547fffe549e49 (patch)
tree69bbf9f49fb9233222065f6542acc08701b2e706 /stdlib/tilemap.h
parent4c8e0f6f28ce3a5b6729ddccfeeb5445e9ec9605 (diff)
downloadbidi-116124155ce9a36b50c0b606154547fffe549e49.tar.gz
Added color stdlib module and compilation step for embedding lua stdlib
Diffstat (limited to 'stdlib/tilemap.h')
-rw-r--r--stdlib/tilemap.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/stdlib/tilemap.h b/stdlib/tilemap.h
new file mode 100644
index 0000000..5795bd7
--- /dev/null
+++ b/stdlib/tilemap.h
@@ -0,0 +1,19 @@
+#ifndef tilemap_H
+#define tilemap_H
+
+unsigned char tilemap[] = {
+ 0x2d, 0x2d, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61,
+ 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72,
+ 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x6f,
+ 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x20, 0x73, 0x74, 0x61, 0x6e,
+ 0x64, 0x61, 0x72, 0x64, 0x20, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79,
+ 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64,
+ 0x73, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x2d, 0x2d, 0x20, 0x66, 0x72, 0x61,
+ 0x6d, 0x65, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
+ 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x69,
+ 0x65, 0x73, 0x2e, 0x0a
+};
+unsigned int tilemap_len = 124;
+
+#endif // tilemap_H