LogicSpawn.GTARPG.Core.General.RPGMenu.Usable C# (CSharp) Method

Usable() private method

private Usable ( IMenuItem item ) : bool
item IMenuItem
return bool
        private bool Usable(IMenuItem item)
        {
            return new[] {typeof (MenuLabel)}.All(m => item.GetType() != m);
        }