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

GetBoxFlags() private method

private GetBoxFlags ( byte boxNum ) : BoxFlags
boxNum byte
return BoxFlags
        internal BoxFlags GetBoxFlags(byte boxNum)
        {
            var box = GetBoxBase(boxNum);
            if (box == null)
                return 0;
            return box.Flags;
        }
ScummEngine