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 // clang-format on
12
13 // Font inner types define
14 struct GlyphQuad {};
15
16 struct TextObject {
17 public:
18 // TextObject inner types declare
19 // clang-format off
20 struct Page;
21 // clang-format on
22
23 // TextObject inner types define
24 struct Page {};
25 };
26};
Definition Font.h:5
Definition Font.h:37
Definition Font.h:62