NoticeView.ts 406 B

1234567891011121314151617181920212223242526272829
  1. import { EventDispatcher } from "../events/EventDispatcher";
  2. import NoticeManager from "./NoticeManager";
  3. export default class NoticeView
  4. {
  5. type:number;
  6. Update(data:any):void{
  7. }
  8. StartAnimation():void{
  9. }
  10. /**
  11. * 回收
  12. */
  13. protected Dispose():void{
  14. NoticeManager.single.Recycle(this);
  15. }
  16. GetView():fgui.GComponent{
  17. return null;
  18. }
  19. }