Finished implementing, now for the testing phase.
This commit is contained in:
@@ -89,13 +89,13 @@ namespace ehs
|
||||
return true;
|
||||
}
|
||||
|
||||
void NetSys::Execute(EHC *ehc, NetEnd *endpoint, const UInt_64 hashId, Serializer<UInt_64> &payload)
|
||||
void NetSys::Execute(NetChannel *channel, NetEnd *endpoint, const UInt_64 hashId, Serializer<UInt_64> &payload)
|
||||
{
|
||||
for (UInt_64 i = 0; i < ops.Size(); ++i)
|
||||
{
|
||||
if (ops[i]->GetHashId() == hashId)
|
||||
{
|
||||
ops[i]->Process(ehc, endpoint, this, payload);
|
||||
ops[i]->Process(channel, endpoint, this, payload);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user