15 lines
118 B
C++
15 lines
118 B
C++
#include "FTGlyph.h"
|
|
|
|
|
|
FTGlyph::FTGlyph()
|
|
: advance(0),
|
|
err(0)
|
|
{
|
|
pos.x = 0;
|
|
pos.y = 0;
|
|
}
|
|
|
|
|
|
FTGlyph::~FTGlyph()
|
|
{}
|