AlpacaLibrary/Include/Core/Classes/Preferences.hpp

28 lines
685 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef PREFERENCES_HPP_INCLUDED
#define PREFERENCES_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include "../JavaClass/LinkedHashMap.hpp"
#include <cstdint>
2018-02-24 12:59:53 +00:00
#include <string>
2017-12-25 23:49:48 +00:00
class Preferences : public Object
{
public:
Preferences();
Preferences(const void* Obj);
Preferences(const Preferences& P);
static Class GetClass();
bool GetHideRoofs() const;
bool GetMuted() const;
LinkedHashMap GetPreferences() const;
std::int32_t GetScreenType() const;
2018-02-24 12:59:53 +00:00
std::string GetUsernameCached() const;
bool GetUsernameHidden() const;
2017-12-25 23:49:48 +00:00
};
#endif // PREFERENCES_HPP_INCLUDED