F4MP/f4mp_originalcode/f4mp/common.cpp

7 lines
139 B
C++
Raw Normal View History

#include "common.h"
u64 f4mp::GetUniqueFormID(u32 ownerEntityID, u32 entityFormID)
{
return ((u64)ownerEntityID << 32) | entityFormID;
}