Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FontPage.cs
Go to the documentation of this file.
4
5namespace ReLogic.Graphics;
6
7internal sealed class FontPage
8{
9 public readonly Texture2D Texture;
10
11 public readonly List<Rectangle> Glyphs;
12
13 public readonly List<Rectangle> Padding;
14
15 public readonly List<char> Characters;
16
17 public readonly List<Vector3> Kerning;
18
19 public FontPage(Texture2D texture, List<Rectangle> glyphs, List<Rectangle> padding, List<char> characters, List<Vector3> kerning)
20 {
21 Texture = texture;
22 Glyphs = glyphs;
23 Padding = padding;
24 Characters = characters;
25 Kerning = kerning;
26 }
27}
FontPage(Texture2D texture, List< Rectangle > glyphs, List< Rectangle > padding, List< char > characters, List< Vector3 > kerning)
Definition FontPage.cs:19
readonly List< Vector3 > Kerning
Definition FontPage.cs:17
readonly List< Rectangle > Glyphs
Definition FontPage.cs:11
readonly List< char > Characters
Definition FontPage.cs:15
readonly Texture2D Texture
Definition FontPage.cs:9
readonly List< Rectangle > Padding
Definition FontPage.cs:13