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