1234567891011121314151617181920212223242526272829 |
- using System.Collections;
- using System.Collections.Generic;
- using GameFramework;
- using GameFramework.Event;
- using UnityEngine;
- public class Stop3DTopoTimeLineEvent : GameEventArgs
- {
- public static readonly int EventId = typeof(Stop3DTopoTimeLineEvent).GetHashCode();
- public override int Id
- {
- get
- {
- return EventId;
- }
- }
-
- public int type = 0;
- public static Stop3DTopoTimeLineEvent Create()
- {
- Stop3DTopoTimeLineEvent args = ReferencePool.Acquire<Stop3DTopoTimeLineEvent>();
- return args;
- }
- public override void Clear()
- {
- }
- }
|