Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AvtEvent.cs
Go to the documentation of this file.
2
3internal sealed class AvtEvent : TextEvent
4{
5 private readonly int _key;
6
7 public AvtEvent(int key)
8 {
9 _key = key;
10 }
11
12 public override bool Output(Processor processor, ActionFrame frame)
13 {
14 return processor.TextEvent(processor.EvaluateString(frame, _key));
15 }
16
17 public override string Evaluate(Processor processor, ActionFrame frame)
18 {
19 return processor.EvaluateString(frame, _key);
20 }
21}
override bool Output(Processor processor, ActionFrame frame)
Definition AvtEvent.cs:12
override string Evaluate(Processor processor, ActionFrame frame)
Definition AvtEvent.cs:17