mirror of
https://github.com/glest/glest-source.git
synced 2025-09-30 01:18:58 +02:00
Fixed the god-awful indentation
This commit is contained in:
@@ -19,13 +19,28 @@ std::string Text::DEFAULT_FONT_PATH_ABSOLUTE = "";
|
||||
Text::Text(FontTextHandlerType type) {
|
||||
this->type = type;
|
||||
}
|
||||
Text::~Text() {}
|
||||
void Text::init(string fontName, string fontFamilyName, int fontSize) {}
|
||||
void Text::Render(const char*, const int) {}
|
||||
float Text::Advance(const char*, const int) {return 0;}
|
||||
float Text::LineHeight(const char*, const int) {return 0;}
|
||||
void Text::Render(const wchar_t*, const int) {}
|
||||
float Text::Advance(const wchar_t*, const int) {return 0;}
|
||||
float Text::LineHeight(const wchar_t*, const int) {return 0;}
|
||||
void Text::SetFaceSize(int) {}
|
||||
int Text::GetFaceSize() {return 0;}
|
||||
Text::~Text() {
|
||||
}
|
||||
void Text::init(string fontName, string fontFamilyName, int fontSize) {
|
||||
}
|
||||
void Text::Render(const char*, const int) {
|
||||
}
|
||||
float Text::Advance(const char*, const int) {
|
||||
return 0;
|
||||
}
|
||||
float Text::LineHeight(const char*, const int) {
|
||||
return 0;
|
||||
}
|
||||
void Text::Render(const wchar_t*, const int) {
|
||||
}
|
||||
float Text::Advance(const wchar_t*, const int) {
|
||||
return 0;
|
||||
}
|
||||
float Text::LineHeight(const wchar_t*, const int) {
|
||||
return 0;
|
||||
}
|
||||
void Text::SetFaceSize(int) {
|
||||
}
|
||||
int Text::GetFaceSize() {
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user