HoldItCore.Stall.Alert C# (CSharp) Méthode

Alert() public méthode

public Alert ( int incrementValue, string reason ) : void
incrementValue int
reason string
Résultat 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

Exemple #1
0
 public void ScoreStallChoice(Stall stall)
 {
     int neighbors = this.GetNeighborCount(stall);
     if (neighbors > 0)
     {
         this.AdjustScore(neighbors * (-15));
         stall.Alert(neighbors * (-15), "Pee foul!");
     }
 }