AlpacaLibrary/Include/Core/Classes/Talkable.hpp

22 lines
426 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>
class Talkable : public Nameable
{
public:
Talkable();
Talkable(const void* Obj);
Talkable(const Talkable& T);
static Class GetClass();
std::int32_t GetRank() const;
std::int32_t GetWorld() const;
};
#endif // TALKABLE_HPP_INCLUDED