1
0
Files
otyaSMILEBASIC/SMILEBASIC/data.d

20 lines
258 B
D
Raw Normal View History

2016-12-27 13:40:44 +09:00
module otya.smilebasic.data;
enum DataType : byte
{
2016-12-27 13:41:23 +09:00
ushort_ = 3,
int_ = 4,
double_ = 5
2016-12-27 13:40:44 +09:00
}
align(1) struct DataHeader
{
char[8] magic;//PCBN0001
DataType type;
byte dimension;
int dim1;
int dim2;
int dim3;
int dim4;
}