AlpacaLibrary/Include/Core/Classes/ClanMember.hpp

22 lines
419 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CLANMEMBER_HPP_INCLUDED
#define CLANMEMBER_HPP_INCLUDED
2018-02-24 12:59:53 +00:00
#include "Talkable.hpp"
2017-12-25 23:49:48 +00:00
#include "../JavaClass/Class.hpp"
#include <cstdint>
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 ClanMember : public Talkable
{
public:
ClanMember();
ClanMember(const void* Obj);
ClanMember(const ClanMember& C);
static Class GetClass();
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 // CLANMEMBER_HPP_INCLUDED