Hello. Learning c++ i am trying to understud the "class SFML_API Glyph" of the code what is mean?
1 2 3 4 5 6 7 8
class SFML_API Glyph
{
public :
Glyph() : Advance(0) {}
int Advance; ///< Offset to move horizontically to the next character
IntRect Rectangle; ///< Bounding rectangle of the glyph, in relative coordinates
FloatRect TexCoords; ///< Texture coordinates of the glyph inside the bitmap font
};
\
Also "class SFML_API Font : public Resource<Font>" and "namespace priv{class FontLoader;}" in code bellow.