IInitiator.ts 279 B

123456789101112131415161718192021
  1. import IEventDispatcher from "../events/IEventDispatcher";
  2. export default interface IInitiator extends IEventDispatcher
  3. {
  4. /**
  5. * 启动
  6. */
  7. Start():void;
  8. /**
  9. * 销毁
  10. */
  11. Destroy():void;
  12. /**
  13. * 名称
  14. */
  15. GetName():string;
  16. }