Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public Game(DifficultySettings diffSettings)
 {
     CMan = new CharacterManager();
     this.Difficulty = diffSettings;
     this.startTime = DateTime.Now;
     this.RespawnSpeed = diffSettings.initRespawnTime;
 }
Exemplo n.º 3
0
 public Multiplyer(DifficultySettings.DIFFICULTY diff)
 {
     this.difficulty = diff;
 }
Exemplo n.º 4
0
 // Constructor for highscore
 public HighScore(string name, int score, DifficultySettings.DIFFICULTY difficulty): this(name, score, DateTime.Now, difficulty)
 {
 }
Exemplo n.º 5
0
 public BallCatcher(DifficultySettings diffSettings) : base(diffSettings)
 {
     this.Difficulty = diffSettings;   
 }