/// <summary>
 /// Send secondary fire command to host
 /// </summary>
 public void FireSecondary()
 {
     CmdProxy.SendMessage(FireControlCmd.Secondary);
 }
 /// <summary>
 /// Send cycle ammo command to host
 /// </summary>
 public void CycleAmmoType()
 {
     CmdProxy.SendMessage(GunLoaderCmd.CycleAmmoType);
 }
 /// <summary>
 /// Send primary fire command to host
 /// </summary>
 public void FirePrimary()
 {
     CmdProxy.SendMessage(FireControlCmd.Primary);
 }
 /// <summary>
 /// Send backward command to host
 /// </summary>
 public void DriveBackward()
 {
     CmdProxy.SendMessage(DriverCmd.Backward);
 }
 /// <summary>
 /// Send load command to host
 /// </summary>
 public void Load()
 {
     CmdProxy.SendMessage(GunLoaderCmd.Load);
 }
 /// <summary>
 /// Send stop command to host
 /// </summary>
 public void Stop()
 {
     CmdProxy.SendMessage(DriverCmd.Stop);
 }
 /// <summary>
 /// Send forward command to host
 /// </summary>
 public void DriveForward()
 {
     CmdProxy.SendMessage(DriverCmd.Forward);
 }
Beispiel #8
0
 /// <summary>
 /// Send farther command to host
 /// </summary>
 public void AimFarther()
 {
     CmdProxy.SendMessage(RangeFinderCmd.Farther);
 }
Beispiel #9
0
 /// <summary>
 /// Send closer command to host
 /// </summary>
 public void AimCloser()
 {
     CmdProxy.SendMessage(RangeFinderCmd.Closer);
 }
 /// <summary>
 /// Send right command to host
 /// </summary>
 public void TurnRight()
 {
     CmdProxy.SendMessage(GunRotationCmd.Right);
 }
Beispiel #11
0
 /// <summary>
 /// Send stop command to host
 /// </summary>
 public void Stop()
 {
     CmdProxy.SendMessage(RangeFinderCmd.Stop);
 }
 /// <summary>
 /// Send left command to host
 /// </summary>
 public void TurnLeft()
 {
     CmdProxy.SendMessage(GunRotationCmd.Left);
 }
 /// <summary>
 /// Send stop command to host
 /// </summary>
 public void Stop()
 {
     CmdProxy.SendMessage(GunRotationCmd.Stop);
 }
 /// <summary>
 /// Send right command to host
 /// </summary>
 public void TurnRight()
 {
     CmdProxy.SendMessage(NavigatorCmd.Right);
 }
 /// <summary>
 /// Send left command to host
 /// </summary>
 public void TurnLeft()
 {
     CmdProxy.SendMessage(NavigatorCmd.Left);
 }
 /// <summary>
 /// Send stop command to host
 /// </summary>
 public void Stop()
 {
     CmdProxy.SendMessage(NavigatorCmd.Stop);
 }