Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ AttributeTargets

Enumerator
Assembly 
Module 
Class 
Struct 
Enum 
Constructor 
Method 
Property 
Field 
Event 
Interface 
Parameter 
Delegate 
ReturnValue 
GenericParameter 
All 

Definition at line 4 of file AttributeTargets.cs.

5{
6 Assembly = 1,
7 Module = 2,
8 Class = 4,
9 Struct = 8,
10 Enum = 0x10,
11 Constructor = 0x20,
12 Method = 0x40,
13 Property = 0x80,
14 Field = 0x100,
15 Event = 0x200,
16 Interface = 0x400,
17 Parameter = 0x800,
18 Delegate = 0x1000,
19 ReturnValue = 0x2000,
20 GenericParameter = 0x4000,
21 All = 0x7FFF
22}