summaryrefslogtreecommitdiff
path: root/sprites/block.h
diff options
context:
space:
mode:
authorSimponic <loganthebean222@gmail.com>2020-08-11 16:44:22 -0600
committerSimponic <loganthebean222@gmail.com>2020-08-11 16:44:22 -0600
commite84e232f8d003f3cf3340517d8bf6b65ba430143 (patch)
tree726c063aa9e4b3a184506c4d7503f8aea7ba4886 /sprites/block.h
parente09a23f0a4f342aa83854ce8cc11aacc09e350fd (diff)
downloadgeometry-dash-gba-e84e232f8d003f3cf3340517d8bf6b65ba430143.tar.gz
geometry-dash-gba-e84e232f8d003f3cf3340517d8bf6b65ba430143.zip
Started work on tile-map
Diffstat (limited to 'sprites/block.h')
-rw-r--r--sprites/block.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/sprites/block.h b/sprites/block.h
new file mode 100644
index 0000000..2a1fbec
--- /dev/null
+++ b/sprites/block.h
@@ -0,0 +1,23 @@
+//======================================================================
+//
+// block, 16x16@4,
+// + palette 256 entries, not compressed
+// + 4 tiles not compressed
+// Total size: 512 + 128 = 640
+//
+// Time-stamp: 2020-08-11, 14:57:03
+// Exported by Cearn's Usenti v1.7.6
+// (comments, kudos, flames to "daytshen@hotmail.com")
+//
+//======================================================================
+
+#ifndef __BLOCK__
+#define __BLOCK__
+
+#define blockPalLen 512
+extern const unsigned short blockPal[256];
+
+#define blockTilesLen 128
+extern const unsigned short blockTiles[64];
+
+#endif // __BLOCK__