mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 14:00:53 +01:00
19 lines
No EOL
256 B
C++
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;
|
|
};
|
|
} |