AlpacaLibrary/Include/Core/Classes/Talkable.hpp

30 lines
684 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(const void* Obj);
2018-12-27 18:17:09 +00:00
Talkable() = default;
Talkable(Talkable&& Obj) = default;
Talkable(const Talkable& Obj) = default;
Talkable& operator=(Talkable&& Obj) = default;
Talkable& operator=(const Talkable& Obj) = default;
2018-03-18 14:38:29 +00:00
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