LeviLamina
Loading...
Searching...
No Matches
Font.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Font {
6public:
7 // Font inner types declare
8 // clang-format off
9 struct GlyphQuad;
10 struct TextObject;
11 class TextObjectCache;
12 // clang-format on
13
14 // Font inner types define
15 struct GlyphQuad {};
16
17 struct TextObject {
18 public:
19 // TextObject inner types declare
20 // clang-format off
21 struct Page;
22 // clang-format on
23
24 // TextObject inner types define
25 struct Page {};
26 };
27
29};
Definition Font.h:28
Definition Font.h:15
Definition Font.h:25
Definition Font.h:17