mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-18 04:23:29 +00:00
CFontLoader: Default constructor
This commit is contained in:
parent
e49315a645
commit
01e68ec5d8
@ -1,10 +1,7 @@
|
|||||||
#include "CFontLoader.h"
|
#include "CFontLoader.h"
|
||||||
#include <Common/Log.h>
|
#include <Common/Log.h>
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
CFontLoader::CFontLoader()
|
CFontLoader::CFontLoader() = default;
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void CFontLoader::LoadFont(IInputStream& rFONT)
|
void CFontLoader::LoadFont(IInputStream& rFONT)
|
||||||
{
|
{
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
class CFontLoader
|
class CFontLoader
|
||||||
{
|
{
|
||||||
TResPtr<CFont> mpFont;
|
TResPtr<CFont> mpFont;
|
||||||
EGame mVersion;
|
EGame mVersion{};
|
||||||
|
|
||||||
CFontLoader();
|
CFontLoader();
|
||||||
void LoadFont(IInputStream& rFONT);
|
void LoadFont(IInputStream& rFONT);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user