Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
StorageDescriptor.cs
Go to the documentation of this file.
3
5
6internal struct StorageDescriptor
7{
9
10 private object _locationObject;
11
13
14 private bool _isCached;
15
17
19
21
23
25
26 public bool IsCached => _isCached;
27
29
30 public static StorageDescriptor None()
31 {
32 return default(StorageDescriptor);
33 }
34
43
53
63
72
82
84 {
86 }
87
92
99}
StorageDescriptor ToStorageType(Type itemStorageType)
static StorageDescriptor Global(MethodInfo methGlobal, Type itemStorageType, bool isCached)
StorageDescriptor ToLocal(LocalBuilder loc)
static StorageDescriptor Parameter(int paramIndex, Type itemStorageType, bool isCached)
static StorageDescriptor Stack(Type itemStorageType, bool isCached)
static StorageDescriptor Current(LocalBuilder locIter, MethodInfo currentMethod, Type itemStorageType)
static StorageDescriptor Local(LocalBuilder loc, Type itemStorageType, bool isCached)