mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:50:54 +01:00
7 lines
139 B
C++
7 lines
139 B
C++
|
|
#include "common.h"
|
||
|
|
|
||
|
|
u64 f4mp::GetUniqueFormID(u32 ownerEntityID, u32 entityFormID)
|
||
|
|
{
|
||
|
|
return ((u64)ownerEntityID << 32) | entityFormID;
|
||
|
|
}
|