示例#1
0
文件: Levels.cs 项目: phiLyken/RC_1
 public int GetCurrentLevel()
 {
     return(config.GetLevelForProgress(currentProgress));
 }
示例#2
0
文件: Levels.cs 项目: phiLyken/RC_1
 public Levels(LevelConfig _config)
 {
     config          = _config;
     currentProgress = config.GetSavedProgress();
     cachedLevel     = config.GetLevelForProgress(currentProgress);
 }