main.js 209 B

12345678910
  1. // This script is the main entry point of the game
  2. var scene = Atomic.player.loadScene("Scenes/Scene.scene");
  3. // called per frame, optional
  4. function update(timeStep) {
  5. }
  6. exports.update = update;