TimerManager.js 336 B

1234567891011121314
  1. function TimerManager() {
  2. }
  3. TimerManager.prototype.removeTimer = function(timer) {
  4. Polycode.TimerManager_removeTimer(this.__ptr, timer)
  5. }
  6. TimerManager.prototype.addTimer = function(timer) {
  7. Polycode.TimerManager_addTimer(this.__ptr, timer)
  8. }
  9. TimerManager.prototype.Update = function() {
  10. Polycode.TimerManager_Update(this.__ptr)
  11. }