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