Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PropertyAccessors.cs
Go to the documentation of this file.
2
4
5public readonly struct PropertyAccessors
6{
7 private readonly int _getterRowId;
8
9 private readonly int _setterRowId;
10
12
14
16
18
19 internal PropertyAccessors(int getterRowId, int setterRowId, ImmutableArray<MethodDefinitionHandle> others)
20 {
21 _getterRowId = getterRowId;
22 _setterRowId = setterRowId;
23 _others = others;
24 }
25}
static MethodDefinitionHandle FromRowId(int rowId)
ImmutableArray< MethodDefinitionHandle > Others
PropertyAccessors(int getterRowId, int setterRowId, ImmutableArray< MethodDefinitionHandle > others)
readonly ImmutableArray< MethodDefinitionHandle > _others