CHEWY: Move private members of FontMgr
This commit is contained in:
parent
8d77908a6b
commit
cf1a10f24a
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue