예제 #1
0
        public static NN_ROOM decode(byte[] data)
        {
            NN_ROOM proto = newBuilder();

            proto.build(data);
            return(proto);
        }
예제 #2
0
        public void build(byte[] data)
        {
            ByteBuffer buf = ByteBuffer.wrap(data);

            for (int i = 0; i < this.__flag.Length; i++)
            {
                this.__flag[i] = buf.get();
            }

            if (this.hasNnRoom())
            {
                byte[] bytes = new byte[buf.getInt()];
                buf.get(ref bytes, 0, bytes.Length);
                this.nn_room = NN_ROOM.decode(bytes);
            }
        }