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

19 lines
No EOL
256 B
C++

#pragma once
#include "Character.h"
namespace f4mp
{
class NPC : public Character
{
public:
NPC(u32 formID = 0, u32 ownerEntityID = (u32)-1);
void OnEntityCreate(librg_event* event) override;
private:
u32 formID;
u32 ownerEntityID;
};
}