2017-05-16 21:28:34 +00:00
|
|
|
// <auto-generated>
|
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
// </auto-generated>
|
2015-08-11 16:01:43 +00:00
|
|
|
|
|
|
|
namespace MyGame.Example
|
|
|
|
{
|
|
|
|
|
2017-03-29 18:09:25 +00:00
|
|
|
using global::System;
|
2020-01-30 18:18:28 +00:00
|
|
|
using global::System.Collections.Generic;
|
2017-03-29 18:09:25 +00:00
|
|
|
using global::FlatBuffers;
|
2015-08-11 16:01:43 +00:00
|
|
|
|
2018-08-16 22:25:33 +00:00
|
|
|
internal partial struct TestSimpleTableWithEnum : IFlatbufferObject
|
2016-08-13 01:01:38 +00:00
|
|
|
{
|
|
|
|
private Table __p;
|
2016-09-09 13:25:09 +00:00
|
|
|
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
2020-03-12 21:41:06 +00:00
|
|
|
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_1_12_0(); }
|
2015-08-11 16:01:43 +00:00
|
|
|
public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return GetRootAsTestSimpleTableWithEnum(_bb, new TestSimpleTableWithEnum()); }
|
2019-06-17 17:16:21 +00:00
|
|
|
public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
|
|
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
2016-08-13 01:01:38 +00:00
|
|
|
public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
2015-08-11 16:01:43 +00:00
|
|
|
|
2019-06-14 15:47:08 +00:00
|
|
|
public MyGame.Example.Color Color { get { int o = __p.__offset(4); return o != 0 ? (MyGame.Example.Color)__p.bb.Get(o + __p.bb_pos) : MyGame.Example.Color.Green; } }
|
|
|
|
public bool MutateColor(MyGame.Example.Color color) { int o = __p.__offset(4); if (o != 0) { __p.bb.Put(o + __p.bb_pos, (byte)color); return true; } else { return false; } }
|
2015-08-11 16:01:43 +00:00
|
|
|
|
2019-06-14 15:47:08 +00:00
|
|
|
public static Offset<MyGame.Example.TestSimpleTableWithEnum> CreateTestSimpleTableWithEnum(FlatBufferBuilder builder,
|
|
|
|
MyGame.Example.Color color = MyGame.Example.Color.Green) {
|
2019-05-31 20:00:55 +00:00
|
|
|
builder.StartTable(1);
|
2015-08-11 16:01:43 +00:00
|
|
|
TestSimpleTableWithEnum.AddColor(builder, color);
|
|
|
|
return TestSimpleTableWithEnum.EndTestSimpleTableWithEnum(builder);
|
|
|
|
}
|
|
|
|
|
2019-05-31 20:00:55 +00:00
|
|
|
public static void StartTestSimpleTableWithEnum(FlatBufferBuilder builder) { builder.StartTable(1); }
|
2019-06-14 15:47:08 +00:00
|
|
|
public static void AddColor(FlatBufferBuilder builder, MyGame.Example.Color color) { builder.AddByte(0, (byte)color, 2); }
|
|
|
|
public static Offset<MyGame.Example.TestSimpleTableWithEnum> EndTestSimpleTableWithEnum(FlatBufferBuilder builder) {
|
2019-05-31 20:00:55 +00:00
|
|
|
int o = builder.EndTable();
|
2019-06-14 15:47:08 +00:00
|
|
|
return new Offset<MyGame.Example.TestSimpleTableWithEnum>(o);
|
2015-08-11 16:01:43 +00:00
|
|
|
}
|
2020-01-30 18:18:28 +00:00
|
|
|
public TestSimpleTableWithEnumT UnPack() {
|
|
|
|
var _o = new TestSimpleTableWithEnumT();
|
|
|
|
this.UnPackTo(_o);
|
|
|
|
return _o;
|
|
|
|
}
|
|
|
|
public void UnPackTo(TestSimpleTableWithEnumT _o) {
|
|
|
|
_o.Color = this.Color;
|
|
|
|
}
|
|
|
|
public static Offset<MyGame.Example.TestSimpleTableWithEnum> Pack(FlatBufferBuilder builder, TestSimpleTableWithEnumT _o) {
|
|
|
|
if (_o == null) return default(Offset<MyGame.Example.TestSimpleTableWithEnum>);
|
|
|
|
return CreateTestSimpleTableWithEnum(
|
|
|
|
builder,
|
|
|
|
_o.Color);
|
|
|
|
}
|
2015-08-11 16:01:43 +00:00
|
|
|
};
|
|
|
|
|
2020-01-30 18:18:28 +00:00
|
|
|
internal partial class TestSimpleTableWithEnumT
|
|
|
|
{
|
2020-02-11 01:43:36 +00:00
|
|
|
[Newtonsoft.Json.JsonProperty("color")]
|
2020-01-30 18:18:28 +00:00
|
|
|
public MyGame.Example.Color Color { get; set; }
|
|
|
|
|
|
|
|
public TestSimpleTableWithEnumT() {
|
|
|
|
this.Color = MyGame.Example.Color.Green;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 16:01:43 +00:00
|
|
|
|
|
|
|
}
|