Example #1
0
 public HighScore(string name, int score, DateTime time, DifficultySettings.DIFFICULTY difficulty)
 {
     this.Name   = name;
     this.Score  = score;
     this.Time   = time;
     this.Difficulty = difficulty;
 }
Example #2
0
 public HighScore(string name, int score, DateTime time, DifficultySettings.DIFFICULTY difficulty)
 {
     this.Name       = name;
     this.Score      = score;
     this.Time       = time;
     this.Difficulty = difficulty;
 }
Example #3
0
 public Multiplyer(DifficultySettings.DIFFICULTY diff)
 {
     this.difficulty = diff;
 }
Example #4
0
 // Constructor for highscore
 public HighScore(string name, int score, DifficultySettings.DIFFICULTY difficulty) : this(name, score, DateTime.Now, difficulty)
 {
 }
Example #5
0
 public Multiplyer(DifficultySettings.DIFFICULTY diff)
 {
     this.difficulty = diff;
 }