AlpacaLibrary/Include/Core/Classes/NPC.hpp

21 lines
348 B
C++

#ifndef NPC_HPP_INCLUDED
#define NPC_HPP_INCLUDED
#include "Character.hpp"
#include "../JavaClass/Class.hpp"
#include "NPCInfo.hpp"
class NPC : public Character
{
public:
NPC();
NPC(const void* Obj);
NPC(const NPC& N);
static Class GetClass();
NPCInfo GetInfo() const;
};
#endif // NPC_HPP_INCLUDED