Example #1
0
        public void Update()
        {
            Statictics stats = Robot.Stats;

            Form.updateStats(stats);
        }
Example #2
0
 public Robot()
 {
     State = new HoldState();
     Stats = new Statictics();
 }
Example #3
0
 internal void updateStats(Statictics stats)
 {
     totalAmountLabel.Text = Convert.ToString(stats.TotalAmount);
 }