forked from BigfootDev/flatbuffers
13 lines
170 B
Plaintext
13 lines
170 B
Plaintext
enum NonZero: ubyte {
|
|
VAL = 1,
|
|
}
|
|
|
|
struct NonZeroArrayStruct {
|
|
data: [NonZero:4];
|
|
}
|
|
|
|
table NonZeroVectorTable {
|
|
values: [NonZero];
|
|
value: NonZero = VAL;
|
|
}
|