Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EventAccessors.cs
Go to the documentation of this file.
2
4
5public readonly struct EventAccessors
6{
7 private readonly int _adderRowId;
8
9 private readonly int _removerRowId;
10
11 private readonly int _raiserRowId;
12
14
16
18
20
22
23 internal EventAccessors(int adderRowId, int removerRowId, int raiserRowId, ImmutableArray<MethodDefinitionHandle> others)
24 {
25 _adderRowId = adderRowId;
26 _removerRowId = removerRowId;
27 _raiserRowId = raiserRowId;
28 _others = others;
29 }
30}
readonly ImmutableArray< MethodDefinitionHandle > _others
EventAccessors(int adderRowId, int removerRowId, int raiserRowId, ImmutableArray< MethodDefinitionHandle > others)
ImmutableArray< MethodDefinitionHandle > Others
static MethodDefinitionHandle FromRowId(int rowId)