This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/server/client_manager.hpp
T
2013-08-29 19:57:25 +10:00

24 lines
351 B
C++

#ifndef CLIENTMANAGER_HPP_
#define CLIENTMANAGER_HPP_
#include <list>
class ClientManager {
private:
ClientManager() = default;
~ClientManager() = default;
static ClientManager instance;
public:
static ClientManager* GetInstance() { return &instance; }
private:
struct ClientEntry {
int index;
};
std::list<ClientEntry> list;
};
#endif