示例#1
0
 public void SpotsPlayerAt(Point p)
 {
     MessageBox.Show("the enemy has spotted you!!");
     state = state.SpotPlayerAt(p);
 }
示例#2
0
 public EnemyUnit(AlarmState state)
 {
     this.state  = state;
     orientation = RIGHT;
 }