AlpacaLibrary/Include/Core/Classes/NPC.hpp

24 lines
410 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef NPC_HPP_INCLUDED
#define NPC_HPP_INCLUDED
#include "Character.hpp"
#include "../JavaClass/Class.hpp"
#include "NPCInfo.hpp"
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class NPC : public Character
{
public:
NPC();
NPC(const void* Obj);
NPC(const NPC& N);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-04-14 01:05:35 +00:00
NPCInfo GetNPCInfo() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // NPC_HPP_INCLUDED