14 lines
301 B
C#
14 lines
301 B
C#
|
namespace Obfuz.Virtualization
|
|||
|
{
|
|||
|
public struct ConstValue
|
|||
|
{
|
|||
|
public readonly DataNodeType type;
|
|||
|
public readonly object value;
|
|||
|
public ConstValue(DataNodeType type, object value)
|
|||
|
{
|
|||
|
this.type = type;
|
|||
|
this.value = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|