summaryrefslogtreecommitdiff
path: root/src/rooms.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rooms.fnl')
-rw-r--r--src/rooms.fnl22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/rooms.fnl b/src/rooms.fnl
deleted file mode 100644
index a343a79..0000000
--- a/src/rooms.fnl
+++ /dev/null
@@ -1,22 +0,0 @@
-(local corridor (require :src.corridor))
-(local fennel (require :vendor.fennel))
-
-(local state {})
-
-(fn theload []
- (set state.font (love.graphics.newFont :assets/APL333.ttf 72))
- (set state.cur-room (corridor.make state)))
-
-(fn update [dt]
- (state.cur-room.update dt))
-
-(fn draw [...]
- (local b [...])
- (print (fennel.view b))
- (state.cur-room.draw))
-
-{:load theload
- : update
- : draw}
-
-