Beispiel #1
0
        static public GameEvent Createimmedi(uint type, object target, object data, bool gcFlag = false)
        {
            GameEvent e = GameEvent.alloc(type, target, data, gcFlag, true);

            return(e);
        }
Beispiel #2
0
 public static GameEvent Create(uint type, object target, object data, bool gcFlag = false)
 {
     return(GameEvent.alloc(type, target, data, gcFlag, false));
 }