AlpacaLibrary/Include/Core/Classes/FriendList.hpp

26 lines
625 B
C++

#ifndef FRIENDLIST_HPP_INCLUDED
#define FRIENDLIST_HPP_INCLUDED
#include "NameableContainer.hpp"
#include "../JavaClass/Class.hpp"
namespace Internal
{
class FriendList : public NameableContainer
{
public:
FriendList(const void* Obj);
FriendList() = default;
FriendList(FriendList&& Obj) = default;
FriendList(const FriendList& Obj) = default;
FriendList& operator=(FriendList&& Obj) = default;
FriendList& operator=(const FriendList& Obj) = default;
static Class GetClass();
};
}
#endif // FRIENDLIST_HPP_INCLUDED