示例#1
0
 public void Move(int?agentId, ECommandDirection moveDirection)
 {
     this.SendCommand(new Move()
     {
         Id = agentId, Direction = moveDirection
     });
 }
示例#2
0
 public void Plant(int?agentId, ECommandDirection bombsiteDirection)
 {
     this.SendCommand(new PlantBomb()
     {
         Id = agentId, Direction = bombsiteDirection
     });
 }
示例#3
0
 public void Defuse(int?agentId, ECommandDirection bombsiteDirection)
 {
     this.SendCommand(new DefuseBomb()
     {
         Id = agentId, Direction = bombsiteDirection
     });
 }