ddnet/src/engine/uuid.h
heinrich5991 5ae37e6c72 Add protocol extension with UUIDs
This system can easily be extended by independent authors without
collisions, something the old system with plain increasing integers did
not allow.

Do this by utilizing the previously unused message code `NETMSG_NULL`
which has a value of 0.

This works for engine and game messages, snapshot items and events.
2017-05-25 00:52:43 +02:00

5 lines
116 B
C

#ifndef ENGINE_UUID_H
#define ENGINE_UUID_H
void RegisterGameUuids(CUuidManager *pManager);
#endif // ENGINE_UUID_H