1
0
This commit is contained in:
otya128
2015-09-05 16:24:09 +09:00
parent b646b9efca
commit 42e514a989
5 changed files with 151 additions and 61 deletions

View File

@@ -10,6 +10,13 @@ enum ValueType : byte
IntegerArray,
DoubleArray,
StringArray,
InternalAddress,
InternalSlotAddress,
}
struct VMAddress
{
byte slot;
uint address;
}
struct Value
{
@@ -23,6 +30,7 @@ struct Value
Array!int integerArray;
Array!double doubleArray;
Array!wstring stringArray;
VMAddress internalAddress;
}
this(int value)
{