Added missing constructor for NetChannel in NetServerCh.

This commit is contained in:
2025-01-28 04:28:55 -08:00
parent 981b40d3b1
commit 39bbcd0d56
2 changed files with 21 additions and 5 deletions

View File

@@ -17,7 +17,9 @@ namespace ehs
public:
~NetServerCh() override;
NetServerCh(UInt_64 maxEndpoints = 0);
NetServerCh();
NetServerCh(Str_8 name, const Version &version, UInt_64 maxEndpoints);
NetServerCh(NetServerCh &&server) noexcept;