Beispiel #1
0
 public void turnOnCamera()
 {
     CommandIssued?.Invoke(this, ClientCommand.TurnOnCamera);
 }
Beispiel #2
0
 public void decreaseHeight()
 {
     CommandIssued?.Invoke(this, ClientCommand.HeightDecrease);
 }
Beispiel #3
0
 public void decreaseWidth()
 {
     CommandIssued?.Invoke(this, ClientCommand.WidthDecrease);
 }
 protected virtual void OnCommandIssued(CommandEventArgs e)
 {
     log.LogInformation($"Command message was parsed. Command: {e.Command}");
     CommandIssued?.Invoke(this, e);
 }