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 as IsoUnityBasicType); } } }
public override IsoUnityType clone() { return(IsoUnityBasicType.CreateInstance <IsoUnityBasicType>()); }