Files
flatbuffers-bigfoot/tests/MyGame/Example/Color.java
Wouter van Oortmerssen 127d35085a Added a bit_flags attribute to enum declarations that 1<<N every value.
Change-Id: Ib9ec0cb3ddec60b1ca124eaf815fb1ae0cc53e1c
Tested: on Windows and Linux
Bug: 16186562
2014-07-21 16:40:39 -07:00

11 lines
204 B
Java
Executable File

// automatically generated, do not modify
package MyGame.Example;
public class Color {
public static final byte Red = 1;
public static final byte Green = 2;
public static final byte Blue = 8;
};