fully implement KeepAlive behavior

This commit is contained in:
2024-07-21 20:59:13 +02:00
parent 36a2e67ac4
commit 92a2e53036
25 changed files with 513 additions and 61 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include <Nazara/Core/Time.hpp>
#include <entt/entity/registry.hpp>
namespace blitz {
namespace server {
class Server;
class DisconectSystem {
public:
DisconectSystem(entt::registry& a_Registry, Server& a_Server);
void Update(Nz::Time elapsedTime);
private:
entt::registry& m_Registry;
Server& m_Server;
};
} // namespace server
} // namespace blitz