Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EventDataAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false)]
5{
6 private EventLevel level = (EventLevel)(-1);
7
8 private EventOpcode opcode = (EventOpcode)(-1);
9
10 public string? Name { get; set; }
11
12 internal EventLevel Level => level;
13
15
16 internal EventKeywords Keywords { get; }
17
18 internal EventTags Tags { get; }
19}