mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
[server] Add PlaneChangeMessage to list of handled message types
This commit is contained in:
parent
3442639631
commit
525399a0a6
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,8 @@ namespace Nibriboard.Client
|
||||||
private static readonly Dictionary<string, Type> messageEventTypes = new Dictionary<string, Type>()
|
private static readonly Dictionary<string, Type> messageEventTypes = new Dictionary<string, Type>()
|
||||||
{
|
{
|
||||||
["HandshakeRequest"] = typeof(HandshakeRequestMessage),
|
["HandshakeRequest"] = typeof(HandshakeRequestMessage),
|
||||||
["CursorPosition"] = typeof(CursorPositionMessage)
|
["CursorPosition"] = typeof(CursorPositionMessage),
|
||||||
|
["PlaneChange"] = typeof(PlaneChangeMessage)
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue