main.js 241 B

1234567891011121314151617
  1. // This script is the main entry point of the game
  2. require("AtomicGame");
  3. Atomic.game.init(start, update);
  4. // called at the start of play
  5. function start() {
  6. var game = Atomic.game;
  7. }
  8. // called per frame
  9. function update(timeStep) {
  10. }