public static AdvancedAlgorythm Instance(Player player) { if (_instance == null) { _instance = new AdvancedAlgorythm(player); } return(_instance); }
public void SetNormLevel() { _timer.Tick -= _algo.OnTimer; _algo = AdvancedAlgorythm.Instance(this); _timer.Tick += _algo.OnTimer; }