Finished implementing, now for the testing phase.

This commit is contained in:
2025-01-26 21:43:17 -08:00
parent 7bc4b9977d
commit 981b40d3b1
47 changed files with 2070 additions and 1597 deletions

View File

@@ -6,14 +6,16 @@
namespace ehs
{
class EHC;
class NetChannel;
class NetEnd;
class NetOp;
class NetSys
{
private:
friend class EHC;
friend class NetChannel;
friend class NetServerCh;
friend class NetClientCh;
UInt_64 hashId;
Str_8 id;
@@ -43,6 +45,6 @@ namespace ehs
bool AddOperation(NetOp *op);
private:
void Execute(EHC *ehc, NetEnd *endpoint, UInt_64 hashId, Serializer<UInt_64> &payload);
void Execute(NetChannel *channel, NetEnd *endpoint, UInt_64 hashId, Serializer<UInt_64> &payload);
};
}