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