summaryrefslogtreecommitdiffstats
path: root/src/model/Map.coffee
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2016-01-05 18:10:35 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2016-01-05 18:10:35 +0100
commit3280ab57bffb3fa1018d406eb25a3d98564a51d7 (patch)
tree02c5d76d89b94b964a7cc005531c6c4427666bc0 /src/model/Map.coffee
parentb910818f176d009a9b98a419b645b6c7e1cb1d20 (diff)
downloadrpgedit-3280ab57bffb3fa1018d406eb25a3d98564a51d7.tar
rpgedit-3280ab57bffb3fa1018d406eb25a3d98564a51d7.zip
Implement basic map rendering
Diffstat (limited to 'src/model/Map.coffee')
-rw-r--r--src/model/Map.coffee8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/model/Map.coffee b/src/model/Map.coffee
new file mode 100644
index 0000000..e97b1ed
--- /dev/null
+++ b/src/model/Map.coffee
@@ -0,0 +1,8 @@
+'use strict'
+
+class Map
+ constructor: (data) ->
+ {@tiles, @collition, @layers} = data
+
+
+module.exports = Map