F4MP/f4mp_originalcode/f4mp_server/NPC.cpp
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

13 lines
292 B
C++

#include "NPC.h"
f4mp::NPC::NPC(u32 formID, u32 ownerEntityID) : formID(formID), ownerEntityID(ownerEntityID)
{
}
void f4mp::NPC::OnEntityCreate(librg_event* event)
{
Character::OnEntityCreate(event);
librg_data_wi32(event->data, formID);
librg_data_wi32(event->data, ownerEntityID);
}