Added additional regions to NetworkingManager

This commit is contained in:
Albin Corén 2018-03-31 00:53:52 +02:00
parent d54ec84209
commit a793dc6fad

View File

@ -502,6 +502,7 @@ namespace MLAPI
if (messageType >= 32)
{
#region CUSTOM MESSAGE
//Custom message, invoke all message handlers
if(targeted)
{
@ -532,9 +533,11 @@ namespace MLAPI
pair.Value(clientId, incommingData);
}
}
#endregion
}
else
{
#region INTERNAL MESSAGE
//MLAPI message
switch (messageType)
{
@ -863,6 +866,7 @@ namespace MLAPI
}
break;
}
#endregion
}
}
}