main.js 171 B

1234567
  1. // This script is the main entry point of the game
  2. "use strict";
  3. // called per frame, optional
  4. function update(timeStep) {
  5. // handle update
  6. }
  7. exports.update = update;