Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
OperatorInfo.cs
Go to the documentation of this file.
1namespace System.Data;
2
3internal sealed class OperatorInfo
4{
5 internal Nodes _type;
6
7 internal int _op;
8
9 internal int _priority;
10
11 internal OperatorInfo(Nodes type, int op, int pri)
12 {
13 _type = type;
14 _op = op;
15 _priority = pri;
16 }
17}
OperatorInfo(Nodes type, int op, int pri)