Пример #1
0
 public PlayerData(Vault instance, TSPlayer player)
 {
     main = instance;
     TSPlayer = player;
     UpdatePlayerData();
     StartUpdating();
 }
Пример #2
0
 public Vault(Main game)
     : base(game)
 {
     Order = 1;
     CurrentInstance = this;
 }
Пример #3
0
 public Updater(Vault instance, PlayerData pd)
 {
     this.main = instance;
     this.who = pd.TSPlayer.Index;
     this.TimerCount = (pd.tempMin > 0) ? (pd.tempMin - 1) : 0;
 }