AlpacaLibary  1.63
A closed source C++ bot for OSRS
Fonts.hpp
Go to the documentation of this file.
1 #ifndef FONTS_HPP_INCLUDED
2 #define FONTS_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include "../JavaClass/Map.hpp"
7 
8 namespace Internal
9 {
10  class Fonts : public Object
11  {
12  public:
13  Fonts(const void* Obj);
14 
15  Fonts() = default;
16  Fonts(Fonts&& Obj) = default;
17  Fonts(const Fonts& Obj) = default;
18  Fonts& operator=(Fonts&& Obj) = default;
19  Fonts& operator=(const Fonts& Obj) = default;
20 
21  static Class GetClass();
22 
23  Map GetFontMap() const;
24  };
25 }
26 
27 #endif // FONTS_HPP_INCLUDED
Fonts(Fonts &&Obj)=default
Map GetFontMap() const
static Class GetClass()
Fonts(const void *Obj)
Fonts(const Fonts &Obj)=default
Fonts()=default
Fonts & operator=(const Fonts &Obj)=default
Fonts & operator=(Fonts &&Obj)=default