Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EndEvent.cs
Go to the documentation of this file.
2
4
5internal sealed class EndEvent : Event
6{
7 private readonly XPathNodeType _nodeType;
8
9 internal EndEvent(XPathNodeType nodeType)
10 {
11 _nodeType = nodeType;
12 }
13
14 public override bool Output(Processor processor, ActionFrame frame)
15 {
16 return processor.EndEvent(_nodeType);
17 }
18}
EndEvent(XPathNodeType nodeType)
Definition EndEvent.cs:9
readonly XPathNodeType _nodeType
Definition EndEvent.cs:7
override bool Output(Processor processor, ActionFrame frame)
Definition EndEvent.cs:14