Add placeholder drawing logic
[naja.git] / naja / constants.py
index 25a8cfcb45c9348773f3c35fac1bc67514d2ed01..d8087d617fb2168a1e3385d4e41e3546d55b26ac 100644 (file)
@@ -35,3 +35,5 @@ BITS = AttrDict({
 })
 DIRECTION_BITS = AttrDict((k, v) for k, v in BITS.items() if v < 4)
 CONDITION_BITS = AttrDict((k, v) for k, v in BITS.items() if v >= 4)
+
+TILE_SIZE = (96, 96)