Exemplo n.º 1
0
        private static void destroyBasic(Dictionary <string, Object> args)
        {
            if (args == null || args.Count == 0)
            {
                return;
            }

            foreach (KeyValuePair <string, Object> entry in args)
            {
                if (entry.Value is IsoUnityBasicType)
                {
                    IsoUnityBasicType.DestroyImmediate(entry.Value, true);
                }
            }
        }
Exemplo n.º 2
0
 public override IsoUnityType clone()
 {
     return(IsoUnityBasicType.CreateInstance <IsoUnityBasicType>());
 }