small typo

This commit is contained in:
Sem van der Hoeven
2020-10-19 12:49:04 +02:00
parent 689f7030e4
commit 973ff20da4
2 changed files with 2 additions and 1 deletions

View File

@@ -165,6 +165,7 @@ namespace ClientApp.Utils
break;
case DataParser.MESSAGE:
engineConnection.DoctorMessage = DataParser.getChatMessageFromJson(payloadbytes);
Debug.WriteLine("received message from doctor");
break;
default:
Console.WriteLine($"Received json with identifier {identifier}:\n{Encoding.ASCII.GetString(payloadbytes)}");

View File

@@ -44,7 +44,7 @@ namespace ClientApp.Utils
private static string groundPlaneId = string.Empty;
private static string terrainId = string.Empty;
public string DoctorMessage { get; set; };
public string DoctorMessage { get; set; }
public float BikeSpeed { get; set; }
public float BikePower { get; set; }
public float BikeBPM { get; set; }