AlpacaLibrary/Include/Core/Classes/ClanMember.hpp

24 lines
488 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CLANMEMBER_HPP_INCLUDED
#define CLANMEMBER_HPP_INCLUDED
#include "Node.hpp"
#include "../JavaClass/Class.hpp"
#include <string>
#include <cstdint>
class ClanMember : public Node
{
public:
ClanMember();
ClanMember(const void* Obj);
ClanMember(const ClanMember& C);
static Class GetClass();
std::string GetName() const;
std::int8_t GetRank() const;
std::int32_t GetWorld() const;
};
#endif // CLANMEMBER_HPP_INCLUDED