예제 #1
0
파일: Area.cs 프로젝트: sopindm/bjeb
        protected override void doDeserialize(net.Stream stream)
        {
            x = stream.tryReadFloat();
            y = stream.tryReadFloat();

            width = stream.tryReadFloat();
            height = stream.tryReadFloat();

            minWidth = stream.tryReadFloat();
            minHeight = stream.tryReadFloat();

            maxWidth = stream.tryReadFloat();
            maxHeight = stream.tryReadFloat();

            widthExpandable = stream.tryReadBool();
            heightExpandable = stream.tryReadBool();
        }