mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
4660e0a680
This works by utilizing the good old UUIDs – this way we can make sure that we don't clash with other people extending the map format.
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
|
|
}
|