Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SerializationEntry.cs
Go to the documentation of this file.
2
3public readonly struct SerializationEntry
4{
5 private readonly string _name;
6
7 private readonly object _value;
8
9 private readonly Type _type;
10
11 public object? Value => _value;
12
13 public string Name => _name;
14
16
18 {
22 }
23}
SerializationEntry(string entryName, object entryValue, Type entryType)