示例#1
0
        public PlayStageState (Timer timer, PanelManager panelManager, LocalManager localManager, float timeLimit, int LimitOfCheck) : base(timer) {
            this.panelManager = panelManager;
            this.localManager = localManager;
            this.timer = timer;
            this.timeLimit = timeLimit;
            RemainingTime = timeLimit;
			HighScore = 0;
            RemainingCheckNum = LimitOfCheck;
            EndCondition = EndConditionType.time_over;
        }
示例#2
0
 public void Stop(EndConditionType endCondition) {
     EndCondition = endCondition;
     Stop();
 }