예제 #1
0
 public static Hand GetRootAsHand(ByteBuffer _bb, Hand obj)
 {
     return (obj.__init(_bb.GetInt(_bb.Position) + _bb.Position, _bb));
 }
예제 #2
0
 public static Hand Deserialize(HandMsg message)
 {
     return new Hand()
     {
         State = message.State,
         Confidence = message.Confidence,
     };
 }
예제 #3
0
 public Hand GetHandRight(Hand obj)
 {
     int o = __offset(14); return o != 0 ? obj.__init(__indirect(o + bb_pos), bb) : null;
 }