Skip to content

Instantly share code, notes, and snippets.

@mattcolman
Created October 7, 2012 22:16
Show Gist options
  • Save mattcolman/3849787 to your computer and use it in GitHub Desktop.
Save mattcolman/3849787 to your computer and use it in GitHub Desktop.
barebones
define [
'caper/game',
'caper/game_states/intro',
'caper/game_states/outro',
'activities/barebones/main',
], (Game, Intro, Outro, Main) ->
class Barebones extends Game
states: [
['intro', new Intro]
['main', new Main]
['outro', new Outro]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment