AlpacaLibrary/Include/Core/Classes/Talkable.hpp

25 lines
489 B
C++
Raw Normal View History

2018-02-24 12:59:53 +00:00
#ifndef TALKABLE_HPP_INCLUDED
#define TALKABLE_HPP_INCLUDED
#include "Nameable.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
2018-03-18 14:38:29 +00:00
namespace Internal
2018-02-24 12:59:53 +00:00
{
2018-03-18 14:38:29 +00:00
class Talkable : public Nameable
{
public:
Talkable();
Talkable(const void* Obj);
Talkable(const Talkable& T);
static Class GetClass();
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetRank() const;
std::int32_t GetWorld() const;
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
};
}
2018-02-24 12:59:53 +00:00
#endif // TALKABLE_HPP_INCLUDED