AlpacaLibrary/Include/Core/Classes/PlayerManager.hpp

23 lines
515 B
C++
Raw 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"
class PlayerManager : public Object
{
public:
PlayerManager();
PlayerManager(const void* Obj);
PlayerManager(const PlayerManager& P);
static Class GetClass();
FriendList GetFriendList() const;
IgnoreList GetIgnoreList() const;
};
#endif // PLAYERMANAGER_HPP_INCLUDED