NScumm.Scumm.ScummEngine.GetBoxFlags C# (CSharp) Méthode

GetBoxFlags() private méthode

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