コード例 #1
0
ファイル: SuperCraft.cs プロジェクト: thehaunted88/Core
        public virtual CraftItem FindCraft(Type type, bool subClasses)
        {
            if (CraftItems != null)
            {
                return(subClasses ? CraftItems.SearchForSubclass(type) : CraftItems.SearchFor(type));
            }

            return(null);
        }