NScumm.Scumm.ScummEngine.GetBoxScale C# (CSharp) Method

GetBoxScale() public method

public GetBoxScale ( byte boxNum ) : int
boxNum byte
return int
        public int GetBoxScale(byte boxNum)
        {
            var box = GetBoxBase(boxNum);
            if (box == null)
                return 255;
            return box.Scale;
        }
ScummEngine