Esempio n. 1
0
            public override IsoUnityType getIsoUnityType(object c)
            {
                IsoUnityType r = null;

                foreach (IsoUnityType t in types)
                {
                    if (t.canHandle(c))
                    {
                        r       = t.clone();
                        r.Value = c;
                        break;
                    }
                }
                return(r);
            }
Esempio n. 2
0
 public override void Destroy(IsoUnityType i)
 {
     IsoUnityType.DestroyImmediate(i, true);
 }
Esempio n. 3
0
 public abstract void Destroy(IsoUnityType i);