AlpacaLibrary/Include/Core/Classes/ClanMemberList.hpp

21 lines
450 B
C++
Raw Normal View History

2018-02-24 12:59:53 +00:00
#ifndef CLANMEMBERLIST_HPP_INCLUDED
#define CLANMEMBERLIST_HPP_INCLUDED
#include "NameableContainer.hpp"
#include "../JavaClass/Class.hpp"
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 ClanMemberList : public NameableContainer
{
public:
ClanMemberList();
ClanMemberList(const void* Obj);
ClanMemberList(const ClanMemberList& C);
static Class GetClass();
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 // CLANMEMBERLIST_HPP_INCLUDED