Пример #1
0
        public void FromBytes(BinaryReader stream)
        {
            bool isNull = stream.ReadBoolean();

            if (!isNull)
            {
                value = new ItemStack();
                value.FromBytes(stream);
            }
        }