예제 #1
0
        public void readCommand(IByteBuffer bytes)
        {
            var p = new ByteParser(bytes);

            p.readShort();
            selection = new KillScreenOptionTypeModule(p.readShort());
        }
        public void readCommand(byte[] bytes)
        {
            var parser = new ByteParser(bytes);

            parser.readShort();
            selection = new KillScreenOptionTypeModule(parser.readShort());
        }