RecipeConfigManager.cs 496 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SKMC.Api.Recipe.Config
  7. {
  8. /// <summary>
  9. /// 配方数据管理器
  10. /// </summary>
  11. public abstract class RecipeConfigManager
  12. {
  13. /// <summary>
  14. /// 加载配方数据到配方缓存中
  15. /// </summary>
  16. /// <param name="recipeId">配方Id</param>
  17. public abstract void LoadRecipeProfile(int recipeId = -1);
  18. }
  19. }