當前位置: 首頁>>代碼示例>>C#>>正文


C# Craft.Recipe類代碼示例

本文整理匯總了C#中Server.Engines.Craft.Recipe的典型用法代碼示例。如果您正苦於以下問題:C# Recipe類的具體用法?C# Recipe怎麽用?C# Recipe使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Recipe類屬於Server.Engines.Craft命名空間,在下文中一共展示了Recipe類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AddRecipe

		public void AddRecipe( int id, CraftSystem system )
		{
			if( m_Recipe != null )
			{
				Console.WriteLine( "Warning: Attempted add of recipe #{0} to the crafting of {1} in CraftSystem {2}.", id, this.m_Type.Name, system );
				return;
			}

			m_Recipe = new Recipe( id, system, this );
		}
開發者ID:Leodinas,項目名稱:uolite,代碼行數:10,代碼來源:CraftItem.cs

示例2: AcquireRecipe

 public virtual void AcquireRecipe(Recipe r)
 {
     if (r != null)
         AcquireRecipe(r.ID);
 }
開發者ID:brodock,項目名稱:genova-project,代碼行數:5,代碼來源:PlayerMobile.cs

示例3: HasRecipe

        public virtual bool HasRecipe(Recipe r)
        {
            if (r == null)
                return false;

            return HasRecipe(r.ID);
        }
開發者ID:brodock,項目名稱:genova-project,代碼行數:7,代碼來源:PlayerMobile.cs

示例4: RecipeScroll

		public RecipeScroll( Recipe r )
			: this( r.ID )
		{
		}
開發者ID:greeduomacro,項目名稱:last-wish,代碼行數:4,代碼來源:RecipeScroll.cs


注:本文中的Server.Engines.Craft.Recipe類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。