AlpacaLibrary/Include/Core/Classes/NPC.hpp

24 lines
407 B
C++

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