HoldItCore.Stall.Alert C# (CSharp) 메소드

Alert() 공개 메소드

public Alert ( int incrementValue, string reason ) : void
incrementValue int
reason string
리턴 void
        public void Alert(int incrementValue, string reason)
        {
            ScoreAlert alert = new ScoreAlert();
            this.alertPanel.Children.Add(alert);

            alert.Alert = incrementValue;
            alert.Description = reason;
        }

Usage Example

예제 #1
0
파일: Level.cs 프로젝트: ibdknox/swred
 public void ScoreStallChoice(Stall stall)
 {
     int neighbors = this.GetNeighborCount(stall);
     if (neighbors > 0)
     {
         this.AdjustScore(neighbors * (-15));
         stall.Alert(neighbors * (-15), "Pee foul!");
     }
 }