AlpacaLibrary/Include/Core/Classes/NPCInfo.hpp

37 lines
1012 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef NPCINFO_HPP_INCLUDED
#define NPCINFO_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <string>
#include <cstdint>
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 NPCInfo : public CacheableNode
{
public:
NPCInfo();
NPCInfo(const void* Obj);
NPCInfo(const NPCInfo& N);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::vector<std::string> GetActions() const;
std::int32_t GetCombatLevel() const;
std::int32_t GetID() const;
std::vector<std::int32_t> GetImposterIDs() const;
bool GetMinimapVisible() const;
std::vector<std::int32_t> GetModelIDs() const;
std::string GetName() const;
std::int32_t GetScaleX() const;
std::int32_t GetScaleY() const;
std::int32_t GetSettingID() const;
std::int32_t GetVarbitID() const;
bool GetVisible() 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 // NPCINFO_HPP_INCLUDED