mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
17 lines
348 B
C++
17 lines
348 B
C++
#include "protocol_ex.h"
|
|
#include "teehistorian_ex.h"
|
|
#include "uuid_manager.h"
|
|
|
|
#include <engine/uuid.h>
|
|
|
|
static CUuidManager CreateGlobalUuidManager()
|
|
{
|
|
CUuidManager Manager;
|
|
RegisterUuids(&Manager);
|
|
RegisterTeehistorianUuids(&Manager);
|
|
RegisterGameUuids(&Manager);
|
|
return Manager;
|
|
}
|
|
|
|
CUuidManager g_UuidManager = CreateGlobalUuidManager();
|