1
0
Fork 0

[server] Add PlaneChangeMessage to list of handled message types

This commit is contained in:
Starbeamrainbowlabs 2017-03-20 18:29:50 +00:00
parent 3442639631
commit 525399a0a6
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ namespace Nibriboard.Client
private static readonly Dictionary<string, Type> messageEventTypes = new Dictionary<string, Type>()
{
["HandshakeRequest"] = typeof(HandshakeRequestMessage),
["CursorPosition"] = typeof(CursorPositionMessage)
["CursorPosition"] = typeof(CursorPositionMessage),
["PlaneChange"] = typeof(PlaneChangeMessage)
};
/// <summary>