Files
flatbuffers/tests/MyGame/Example
Shuhei Tanuma 37e28d98ea C# Unity can't cast integer represented enum value.
```
namespace MyGame;

enum CommandType : byte {
	None = 0,
}

table Command {
	id:int;
	type:CommandType;
}
```

then generate c# files. it'll output compile error like these.

```
Assets/MyGame/Command.cs(18,39): error CS1041: Identifier expected
Assets/MyGame/Command.cs(18,39): error CS1737: Optional parameter cannot precede required parameters

16:   public static Offset<Command> CreateCommand(FlatBufferBuilder builder,
17:   int id = 0,
18:   CommandType type = (CommandType)0) {
```
2015-11-17 18:02:59 +09:00
..
2015-05-12 15:40:29 -07:00
2015-04-13 10:40:30 -07:00
2015-04-10 11:20:19 -07:00
2015-05-12 15:40:29 -07:00
2015-08-07 18:59:59 +03:00
2015-05-12 15:40:29 -07:00
2015-08-07 18:59:59 +03:00
2014-07-21 16:40:39 -07:00
2015-05-12 15:40:29 -07:00
2015-08-07 18:59:59 +03:00