ld31-space-diggers/src/main.coffee

21 lines
271 B
CoffeeScript
Raw Normal View History

2014-12-06 09:24:36 +01:00
app = playground({
2014-12-06 14:14:32 +01:00
width: 8*20*5,
height: 8*15*5,
scaleToFit: false,
2014-12-06 09:24:36 +01:00
smoothing: false,
create: ->
2014-12-06 14:28:58 +01:00
@loadImages "layers"
2014-12-06 09:24:36 +01:00
ready: ->
2014-12-06 10:34:53 +01:00
@game.start()
@setState @game
2014-12-06 09:24:36 +01:00
step: ->
2014-12-06 10:34:53 +01:00
2014-12-06 09:24:36 +01:00
render: ->
2014-12-06 10:34:53 +01:00
@layer.clear("#00f");
@game.render
2014-12-06 08:22:38 +01:00
})