Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MemberPrimitiveUnTyped.cs
Go to the documentation of this file.
2
3internal sealed class MemberPrimitiveUnTyped : IStreamable
4{
6
7 internal object _value;
8
10 {
11 }
12
18
23
25 {
26 output.WriteValue(_typeInformation, _value);
27 }
28
29 public void Read(BinaryParser input)
30 {
31 _value = input.ReadValue(_typeInformation);
32 }
33}
void Set(InternalPrimitiveTypeE typeInformation, object value)