First working version

This commit is contained in:
Aaron Mueller 2014-12-06 08:37:36 +01:00
parent e907b1a5ba
commit 7234373153
3 changed files with 13 additions and 5 deletions

View File

@ -23,7 +23,7 @@ gulp.task('server', function() {
gulp.task('compile', function() {
return gulp.src(['src/*.coffee'])
.pipe(sourcemaps.init())
.pipe(coffee())
.pipe(coffee({bare: true}))
.pipe(uglify())
.pipe(concat('app.js'))
.pipe(sourcemaps.write())

9
src/game.coffee Normal file
View File

@ -0,0 +1,9 @@
game = {
start: ->
step: ->
resources:
ore: 0
stone: 100
}

View File

@ -9,12 +9,11 @@ $ ->
# TODO: Load images
ready: ->
# TODO: Start the game
# TODO: setTimeout?
game.start
this.setState(game)
step: ->
# TODO: For internal stuff like progress bar
render: ->
# TODO: this.game.render?
this.layer.clear("#333");
})