Beispiel #1
0
 public PlayerPosition(string nick, ILabyrinthNav navi, char appearance)
     : base(appearance)
 {
     this.Nick = nick;
     this.LabyrinthNavigation = navi;
 }
Beispiel #2
0
 //, foreground, background)
 public PlayerPosition(string nick, ILabyrinthNav navi, char appearance, ConsoleColor foreground, ConsoleColor background)
     : base(appearance)
 {
     this.Nick = nick;
     this.LabyrinthNavigation = navi;
 }
Beispiel #3
0
 public PlayerPosition(string nick, ILabyrinthNav navi)
     : base(defaultAppearance)
 {
     this.Nick = nick;
     this.LabyrinthNavigation = navi;
 }