1enum OptionsEnum : uint32 2{ 3 A = 1, 4 B = 2, 5 C = 3 6} 7 8table MyTable { 9 options : [OptionsEnum]; 10}
View as plain text