Skip to content

Instantly share code, notes, and snippets.

@montmirail
Created March 27, 2018 14:54
Show Gist options
  • Save montmirail/1dc613da31793a263d605eae8307ef00 to your computer and use it in GitHub Desktop.
Save montmirail/1dc613da31793a263d605eae8307ef00 to your computer and use it in GitHub Desktop.
class Game {
constructor() {
this.scenes = []
this.textures = []
}
initialize() {
}
update() {
}
}
const game = new Game();
game.initialize();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment