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