Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PemFields.cs
Go to the documentation of this file.
2
3public readonly struct PemFields
4{
5 public Range Location { get; }
6
7 public Range Label { get; }
8
9 public Range Base64Data { get; }
10
11 public int DecodedDataLength { get; }
12
13 internal PemFields(Range label, Range base64data, Range location, int decodedDataLength)
14 {
15 Location = location;
16 DecodedDataLength = decodedDataLength;
17 Base64Data = base64data;
18 Label = label;
19 }
20}
PemFields(Range label, Range base64data, Range location, int decodedDataLength)
Definition PemFields.cs:13