示例#1
0
 void m_state_BoulderFound(WorldState world, Boulder b)
 {
     AddBoulder(b);
 }
示例#2
0
 void m_state_CraterFound(WorldState world, Crater c)
 {
     AddCrater(c);
 }
示例#3
0
 void m_state_WorldChanged(WorldState world)
 {
     this.Invalidate();
 }
示例#4
0
 void m_state_HomeFound(WorldState world, Home h)
 {
     AddHome(h);
 }
示例#5
0
 public RoverController(WorldState world, ServerWrapper server)
 {
     World  = world;
     Server = server;
 }