Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ParameterTypeEncoder.cs
Go to the documentation of this file.
2
3public readonly struct ParameterTypeEncoder
4{
5 public BlobBuilder Builder { get; }
6
8 {
9 Builder = builder;
10 }
11
16
17 public SignatureTypeEncoder Type(bool isByRef = false)
18 {
19 if (isByRef)
20 {
22 }
23 return new SignatureTypeEncoder(Builder);
24 }
25
26 public void TypedReference()
27 {
29 }
30}