AlpacaLibrary/Include/Core/Classes/Fonts.hpp

23 lines
437 B
C++
Raw 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();
Fonts(const void* Obj);
Fonts(const Fonts& F);
static Class GetClass();
Map GetFontMap() const;
};
}
#endif // FONTS_HPP_INCLUDED