| 1 | #include "protocol_ex.h" |
|---|---|
| 2 | #include "teehistorian_ex.h" |
| 3 | #include "uuid_manager.h" |
| 4 | |
| 5 | #include <engine/uuid.h> |
| 6 | |
| 7 | static CUuidManager CreateGlobalUuidManager() |
| 8 | { |
| 9 | CUuidManager Manager; |
| 10 | RegisterUuids(pManager: &Manager); |
| 11 | RegisterTeehistorianUuids(pManager: &Manager); |
| 12 | RegisterGameUuids(pManager: &Manager); |
| 13 | return Manager; |
| 14 | } |
| 15 | |
| 16 | CUuidManager g_UuidManager = CreateGlobalUuidManager(); |
| 17 |