예제 #1
0
 void InsertMyScore(ScoreData score)
 {
     ScoreUtil.InsertScore(new LevelScoreTextBox(score), this.MyScoreData, this.MyScoreList.Items);
 }
예제 #2
0
파일: ScoreUtil.cs 프로젝트: ibdknox/swred
 public HighScoreTextBox(ScoreData score)
     : base(score, -score.Rank)
 {
 }
예제 #3
0
파일: ScoreUtil.cs 프로젝트: ibdknox/swred
 public LevelScoreTextBox(ScoreData score)
     : base(score, score.LevelIndex)
 {
 }
예제 #4
0
파일: ScoreUtil.cs 프로젝트: ibdknox/swred
 protected VisualScoreInfo(ScoreData score, int sortValue)
 {
     this.Score = score; this.SortValue = sortValue;
 }