mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
11 lines
228 B
C++
11 lines
228 B
C++
|
#include "mapitems_ex.h"
|
||
|
|
||
|
#include <engine/shared/uuid_manager.h>
|
||
|
|
||
|
void RegisterMapItemTypeUuids(CUuidManager *pManager)
|
||
|
{
|
||
|
#define UUID(id, name) pManager->RegisterName(id, name);
|
||
|
#include "mapitems_ex_types.h"
|
||
|
#undef UUID
|
||
|
}
|