Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
StoreFieldInstruction.cs
Go to the documentation of this file.
2
4
6{
7 public override string InstructionName => "StoreField";
8
9 public override int ConsumedStack => 2;
10
12 : base(field)
13 {
14 }
15
16 public override int Run(InterpretedFrame frame)
17 {
18 object value = frame.Pop();
19 object obj = frame.Pop();
22 return 1;
23 }
24}
void SetValue(object? obj, object? value)
Definition FieldInfo.cs:108