1234567891011121314151617181920212223242526272829 |
- import { EventDispatcher } from "../events/EventDispatcher";
- import NoticeManager from "./NoticeManager";
- export default class NoticeView
- {
- type:number;
- Update(data:any):void{
- }
- StartAnimation():void{
- }
- /**
- * 回收
- */
- protected Dispose():void{
- NoticeManager.single.Recycle(this);
- }
-
- GetView():fgui.GComponent{
- return null;
- }
- }
|