CFontLoader: Default constructor

This commit is contained in:
Lioncash 2020-06-14 16:51:13 -04:00
parent e49315a645
commit 01e68ec5d8
2 changed files with 2 additions and 5 deletions

View File

@ -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)
{ {

View File

@ -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);