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