//
// automatically generated by the FlatBuffers compiler, do not modify
//
using global::System;
using global::System.Collections.Generic;
using global::Google.FlatBuffers;
public struct Rapunzel : IFlatbufferObject
{
private Struct __p;
public ByteBuffer ByteBuffer { get { return __p.bb; } }
public void __init(int _i, ByteBuffer _bb) { __p = new Struct(_i, _bb); }
public Rapunzel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
public int HairLength { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
public void MutateHairLength(int hair_length) { __p.bb.PutInt(__p.bb_pos + 0, hair_length); }
public static Offset CreateRapunzel(FlatBufferBuilder builder, int HairLength) {
builder.Prep(4, 4);
builder.PutInt(HairLength);
return new Offset(builder.Offset);
}
public RapunzelT UnPack() {
var _o = new RapunzelT();
this.UnPackTo(_o);
return _o;
}
public void UnPackTo(RapunzelT _o) {
_o.HairLength = this.HairLength;
}
public static Offset Pack(FlatBufferBuilder builder, RapunzelT _o) {
if (_o == null) return default(Offset);
return CreateRapunzel(
builder,
_o.HairLength);
}
}
public class RapunzelT
{
[Newtonsoft.Json.JsonProperty("hair_length")]
public int HairLength { get; set; }
public RapunzelT() {
this.HairLength = 0;
}
}