MasterClientMessage.Deserialize is now a virtual function with default behavior of not deserializing any parameters.

feature-npv2
Icedream 2014-07-05 18:46:58 +02:00
parent 91aed86380
commit d90ceaf1dc
1 changed files with 3 additions and 1 deletions

View File

@ -108,6 +108,8 @@ namespace NPSharp.Master.Messages
return Name; return Name;
} }
protected abstract void Deserialize(string[] arguments); protected virtual void Deserialize(string[] arguments)
{
}
} }
} }