AlpacaLibary  1.63
A closed source C++ bot for OSRS
Preferences.hpp
Go to the documentation of this file.
1 #ifndef PREFERENCES_HPP_INCLUDED
2 #define PREFERENCES_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include "../JavaClass/LinkedHashMap.hpp"
7 #include <cstdint>
8 #include <string>
9 
10 namespace Internal
11 {
12  class Preferences : public Object
13  {
14  public:
15  Preferences(const void* Obj);
16 
17  Preferences() = default;
18  Preferences(Preferences&& Obj) = default;
19  Preferences(const Preferences& Obj) = default;
21  Preferences& operator=(const Preferences& Obj) = default;
22 
23  static Class GetClass();
24 
25  bool GetHideRoofs() const;
26  bool GetMuted() const;
28  std::int32_t GetScreenType() const;
29  std::string GetUsernameCached() const;
30  bool GetUsernameHidden() const;
31 
32  };
33 }
34 
35 #endif // PREFERENCES_HPP_INCLUDED
Preferences & operator=(Preferences &&Obj)=default
bool GetMuted() const
Preferences & operator=(const Preferences &Obj)=default
bool GetUsernameHidden() const
bool GetHideRoofs() const
static Class GetClass()
std::string GetUsernameCached() const
LinkedHashMap GetPreferences() const
Preferences(const Preferences &Obj)=default
std::int32_t GetScreenType() const
Preferences(Preferences &&Obj)=default
Preferences(const void *Obj)