Exemple #1
0
 public static void SetInt(string key, int value)
 {
     _CurrentData[key] = new SavableData
     {
         Type = ValueTypes.Int,
         Obj  = value
     };
 }
Exemple #2
0
 public static void SetBool(string key, bool value)
 {
     _CurrentData[key] = new SavableData
     {
         Type = ValueTypes.Bool,
         Obj  = value
     };
 }
Exemple #3
0
 public static void SetString(string key, string value)
 {
     _CurrentData[key] = new SavableData
     {
         Type = ValueTypes.String,
         Obj  = value
     };
 }