add client

This commit is contained in:
2025-08-08 13:24:50 +02:00
parent b09c7f9efd
commit ac3e949323
14 changed files with 306 additions and 33 deletions

View File

@@ -19,15 +19,10 @@ class Server {
void Update();
void UpdateState(const std::shared_ptr<IServerState>& a_State) {
m_State = a_State;
m_State->SetServer(this);
}
void UpdateState(const std::shared_ptr<IServerState>& a_State);
private:
void Update(float a_Delta) {
m_State->Update(a_Delta);
}
void Update(float a_Delta);
friend class IServerState;
};