obfuz/Editor/Virtualization/ConstValue.cs

15 lines
302 B
C#
Raw Normal View History

2025-04-20 15:20:13 +08:00
namespace Obfuz.Virtualization
{
public struct ConstValue
{
public readonly DataNodeType type;
public readonly object value;
2025-04-21 08:58:25 +08:00
2025-04-20 15:20:13 +08:00
public ConstValue(DataNodeType type, object value)
{
this.type = type;
this.value = value;
}
}
}