AlpacaLibrary/Include/Core/Classes/NPC.hpp

31 lines
644 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"
2022-12-08 00:36:31 +00:00
#include "ModelInfo.hpp"
2017-12-25 23:49:48 +00:00
#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(const void* Obj);
2018-12-27 18:17:09 +00:00
NPC() = default;
NPC(NPC&& Obj) = default;
NPC(const NPC& Obj) = default;
NPC& operator=(NPC&& Obj) = default;
NPC& operator=(const NPC& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2022-12-08 00:36:31 +00:00
ModelInfo GetModelInfo() const;
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