This commit is contained in:
2023-05-26 16:09:29 +02:00
commit 32db868ae6
83 changed files with 5753 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#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;
};