summaryrefslogtreecommitdiff
path: root/src/prefab/room.moon
diff options
context:
space:
mode:
Diffstat (limited to 'src/prefab/room.moon')
-rw-r--r--src/prefab/room.moon10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/prefab/room.moon b/src/prefab/room.moon
new file mode 100644
index 0000000..c041bb8
--- /dev/null
+++ b/src/prefab/room.moon
@@ -0,0 +1,10 @@
+
+
+class Room
+ new: (x,y,width,height) =>
+ @x = x
+ @y = y
+ @width = width
+ @height = height
+ @hallways = {}
+