AlpacaLibrary/Include/Core/Classes/Font.hpp

26 lines
527 B
C++
Raw Normal View History

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