NScumm.Scumm.ScummEngine.GetBoxFlags C# (CSharp) Метод

GetBoxFlags() приватный Метод

private GetBoxFlags ( byte boxNum ) : BoxFlags
boxNum byte
Результат BoxFlags
        internal BoxFlags GetBoxFlags(byte boxNum)
        {
            var box = GetBoxBase(boxNum);
            if (box == null)
                return 0;
            return box.Flags;
        }
ScummEngine