mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 01:07:22 +00:00
CHEWY: Move private members of FontMgr
This commit is contained in:
parent
903ec7bc86
commit
2ae3906211
@ -51,9 +51,6 @@ private:
|
||||
};
|
||||
|
||||
class FontMgr {
|
||||
private:
|
||||
ChewyFont *_font;
|
||||
|
||||
public:
|
||||
FontMgr() : _font(nullptr) {};
|
||||
virtual ~FontMgr() {};
|
||||
@ -62,6 +59,9 @@ public:
|
||||
|
||||
void setFont(ChewyFont *font) { _font = font; }
|
||||
ChewyFont *getFont() { return _font; }
|
||||
|
||||
private:
|
||||
ChewyFont *_font;
|
||||
};
|
||||
|
||||
} // namespace Chewy
|
||||
|
Loading…
x
Reference in New Issue
Block a user