NScumm.Scumm.ScummEngine.GetBoxScale C# (CSharp) 메소드

GetBoxScale() 공개 메소드

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