AlpacaLibrary/Include/Core/Classes/PlayerManager.hpp

31 lines
803 B
C++
Raw Permalink Normal View History

2018-02-24 12:59:53 +00:00
#ifndef PLAYERMANAGER_HPP_INCLUDED
#define PLAYERMANAGER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include "FriendList.hpp"
#include "IgnoreList.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 PlayerManager : public Object
{
public:
PlayerManager(const void* Obj);
2018-12-27 18:17:09 +00:00
PlayerManager() = default;
PlayerManager(PlayerManager&& Obj) = default;
PlayerManager(const PlayerManager& Obj) = default;
PlayerManager& operator=(PlayerManager&& Obj) = default;
PlayerManager& operator=(const PlayerManager& 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
FriendList GetFriendList() const;
IgnoreList GetIgnoreList() 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 // PLAYERMANAGER_HPP_INCLUDED