Interface ISettingsSaveLoad
- Namespace
- Zorro.Settings
- Assembly
- Zorro.Settings.Runtime.dll
public interface ISettingsSaveLoad
- Extension Methods
-
Methods
SaveFloat(Type, float)
void SaveFloat(Type type, float value)
Parameters
type
Type
value
float
SaveInt(Type, int)
void SaveInt(Type type, int value)
Parameters
type
Type
value
int
SaveString(Type, string)
void SaveString(Type type, string value)
Parameters
type
Type
value
string
TryGetString(Type, out string)
bool TryGetString(Type type, out string value)
Parameters
type
Type
value
string
Returns
- bool
TryLoadFloat(Type, out float)
bool TryLoadFloat(Type type, out float value)
Parameters
type
Type
value
float
Returns
- bool
TryLoadInt(Type, out int)
bool TryLoadInt(Type type, out int o)
Parameters
type
Type
o
int
Returns
- bool
WriteToDisk()