public static boolean SaveDestructableHandle(hashtable table, integer parentKey, integer childKey, destructable whichDestructable) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichDestructable); return(true); }
public static boolean SaveItemHandle(hashtable table, integer parentKey, integer childKey, item whichItem) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichItem); return(true); }
public static void SaveBoolean(hashtable table, integer parentKey, integer childKey, boolean value) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value); }
public static boolean SaveStr(hashtable table, integer parentKey, integer childKey, @string value) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value); return(true); }
public static boolean SaveGroupHandle(hashtable table, integer parentKey, integer childKey, group whichGroup) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichGroup); return(true); }
public static void SaveReal(hashtable table, integer parentKey, integer childKey, real value) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value); }
public static boolean SaveLightningHandle(hashtable table, integer parentKey, integer childKey, lightning whichLightning) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichLightning); return(true); }
public static boolean SaveTimerHandle(hashtable table, integer parentKey, integer childKey, timer whichTimer) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichTimer); return(true); }
public static boolean SaveDialogHandle(hashtable table, integer parentKey, integer childKey, dialog whichDialog) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichDialog); return(true); }
public static boolean SaveTextTagHandle(hashtable table, integer parentKey, integer childKey, texttag whichTexttag) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichTexttag); return(true); }
public static boolean SaveMultiboardHandle(hashtable table, integer parentKey, integer childKey, multiboard whichMultiboard) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichMultiboard); return(true); }
public static boolean SaveSoundHandle(hashtable table, integer parentKey, integer childKey, sound whichSound) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichSound); return(true); }
public static boolean SaveBooleanExprHandle(hashtable table, integer parentKey, integer childKey, boolexpr whichBoolexpr) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichBoolexpr); return(true); }
public static boolean SaveUnitHandle(hashtable table, integer parentKey, integer childKey, unit whichUnit) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichUnit); return(true); }
public static boolean SaveRegionHandle(hashtable table, integer parentKey, integer childKey, region whichRegion) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichRegion); return(true); }
public static boolean SaveAbilityHandle(hashtable table, integer parentKey, integer childKey, ability whichAbility) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichAbility); return(true); }
public static boolean SaveFogStateHandle(hashtable table, integer parentKey, integer childKey, fogstate whichFogState) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichFogState); return(true); }
public static boolean SaveTriggerConditionHandle(hashtable table, integer parentKey, integer childKey, triggercondition whichTriggercondition) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichTriggercondition); return(true); }
public static boolean SaveTriggerEventHandle(hashtable table, integer parentKey, integer childKey, @event whichEvent) { table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichEvent); return(true); }