AlpacaLibrary/Include/Core/Classes/Fonts.hpp

28 lines
614 B
C++
Raw Permalink Normal View History

2018-06-28 02:22:43 +00:00
#ifndef FONTS_HPP_INCLUDED
#define FONTS_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include "../JavaClass/Map.hpp"
namespace Internal
{
class Fonts : public Object
{
public:
Fonts(const void* Obj);
2018-12-27 18:17:09 +00:00
Fonts() = default;
Fonts(Fonts&& Obj) = default;
Fonts(const Fonts& Obj) = default;
Fonts& operator=(Fonts&& Obj) = default;
Fonts& operator=(const Fonts& Obj) = default;
2018-06-28 02:22:43 +00:00
static Class GetClass();
Map GetFontMap() const;
};
}
#endif // FONTS_HPP_INCLUDED