14 lines
378 B
C++
Executable file
14 lines
378 B
C++
Executable file
#include "RichTextSizable.h"
|
|
|
|
void URichTextSizable::SetDefaultFontSize(int32 inFontSize) {
|
|
}
|
|
|
|
void URichTextSizable::SetDefaultFontColor(const FLinearColor& InColor) {
|
|
}
|
|
|
|
URichTextSizable::URichTextSizable() : URichTextBlock(FObjectInitializer::Get()) {
|
|
this->bOverrideDefaultSize = true;
|
|
this->OverrideDefaultFontSize = 12;
|
|
this->bOverrideDefaultColor = false;
|
|
}
|
|
|