Home Reference Source Test

src/manager/Manager.js

  1. /**
  2. * Baseclass for all Managers.
  3. *
  4. * In order for a new Manager to be added to the engine, it must inherit
  5. * this class and define these functions to be recognized by the Engine.
  6. *
  7. * TODO: Finish Plugins in Engine Manager & implement optional function calls on updateables.
  8. */
  9.  
  10. export default class Manager {
  11. constructor() {
  12.  
  13. }
  14. start() {}
  15. update() {}
  16. end() {}
  17. pause() {}
  18. unpause() {}
  19. }