ICommon.cs 329 B

123456789101112131415
  1. namespace FCS.Interface
  2. {
  3. /// <summary>
  4. /// 公共方法接口
  5. /// </summary>
  6. public interface ICommon
  7. {
  8. /// <summary>
  9. /// 获取等级对应分数
  10. /// </summary>
  11. /// <param name="level">等级</param>
  12. /// <returns></returns>
  13. int GetScore(int level);
  14. }
  15. }