Пример #1
0
        internal int PopWiredInt32()
        {
            if (this.RemainingLength < 1)
            {
                return(0);
            }
            byte[] v      = this.PlainReadBytes(4);
            int    result = HabboEncoding.DecodeInt32(v);

            checked
            {
                this.Pointer += 4;
                return(result);
            }
        }