AlpacaLibrary/Include/Core/Classes/Character.hpp

52 lines
1.7 KiB
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CHARACTER_HPP_INCLUDED
#define CHARACTER_HPP_INCLUDED
#include "Renderable.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
#include "LinkedList.hpp"
2023-04-18 17:43:59 +00:00
#include "IterableHashTable.hpp"
2017-12-25 23:49:48 +00:00
#include <string>
#include <vector>
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 Character : public Renderable
{
public:
Character(const void* Obj);
2018-12-27 18:17:09 +00:00
Character() = default;
Character(Character&& Obj) = default;
Character(const Character& Obj) = default;
Character& operator=(Character&& Obj) = default;
Character& operator=(const Character& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetAngle() const;
std::int32_t GetAnimationDelay() const;
std::int32_t GetAnimationFrame() const;
std::int32_t GetAnimationID() const;
LinkedList GetCombatInfo() const;
2023-04-18 17:43:59 +00:00
IterableHashTable GetGraphicsHashTable() const;
2018-10-04 09:58:56 +00:00
std::vector<std::int32_t> GetHitsplatTicks() const;
std::vector<std::int32_t> GetHitsplatTypes() const;
std::vector<std::int32_t> GetHitsplatValues() const;
2018-03-18 14:38:29 +00:00
std::int32_t GetInteractIndex() const;
2020-08-08 05:46:33 +00:00
std::int32_t GetNPCTick() const;
2018-03-18 14:38:29 +00:00
std::string GetOverhead() const;
std::vector<std::int32_t> GetPathX() const;
std::vector<std::int32_t> GetPathY() const;
2020-08-08 05:46:33 +00:00
std::int32_t GetPlayerTick() const;
2018-03-18 14:38:29 +00:00
std::int32_t GetPoseAnimationFrame() const;
std::int32_t GetPoseAnimationID() const;
std::int32_t GetSubPoseAnimationID() const;
std::int32_t GetX() const;
std::int32_t GetY() 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 // CHARACTER_HPP_INCLUDED