A little cleanup, and some work on LpxClient

This commit is contained in:
2021-10-15 13:51:32 -04:00
parent 2e05df7ac5
commit b7b4ad8577
7 changed files with 46 additions and 21 deletions

View File

@@ -8,12 +8,12 @@ class ServerClient {
public:
int64_t actor_id_;
Channel *channel_;
std::unique_ptr<World> sync_;
UniqueWorld sync_;
};
class LpxServer : public DrivenEngine {
public:
std::unique_ptr<World> master_;
UniqueWorld master_;
std::vector<std::unique_ptr<ServerClient>> clients_;
public: