mirror of
https://github.com/alterware/master-server.git
synced 2025-04-21 20:55:42 +00:00
13 lines
296 B
C++
13 lines
296 B
C++
#pragma once
|
|
|
|
#include "client.hpp"
|
|
#include "network_list.hpp"
|
|
|
|
class client_list : public network_list<client, 0>
|
|
{
|
|
public:
|
|
bool find_client(uint64_t guid, const access_func& accessor);
|
|
bool find_client(uint64_t guid, const const_access_func& accessor) const;
|
|
|
|
using network_list::insert;
|
|
}; |