public PacMan() { // Създаване на нов PacMan със стойности по подразбиране this.pacManPos = new Position(17, 20); this.score = 0; this.lives = 3; this.level = 1; }
public Monster(ConsoleColor color, int x, int y) { // Създаване на нов Monster със стойности по подразбиране this.color = color; this.monsterPos = new Position(x, y); this.prevPosX = x; this.prevPosY = y; }