blob: ca4d7f879c96e83a62d347691818fad6d03d732e [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package MyGame.Example
4
5@Suppress("unused")
6class TestEnum private constructor() {
7 companion object {
8 const val A: Byte = 0
9 const val B: Byte = 1
10 const val C: Byte = 2
11 val names : Array<String> = arrayOf("A", "B", "C")
12 fun name(e: Int) : String = names[e]
13 }
14}