Exemplo n.º 1
0
 public PlayerPosition(string nick, ILabyrinthNav navi, char appearance)
     : base(appearance)
 {
     this.Nick = nick;
     this.LabyrinthNavigation = navi;
 }
Exemplo 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;
 }
Exemplo n.º 3
0
 public PlayerPosition(string nick, ILabyrinthNav navi)
     : base(defaultAppearance)
 {
     this.Nick = nick;
     this.LabyrinthNavigation = navi;
 }