()
| 77 | |
| 78 | // Private methods |
| 79 | private addGround(): void{ |
| 80 | var wall: Wall = new Wall(this, new Pos(0, this.getRealQuestSize().y)); |
| 81 | wall.addBox(new Pos(0, 0), new Pos(this.getRealQuestSize().x, 1)); |
| 82 | this.addEntity(wall); |
| 83 | } |
| 84 | |
| 85 | private addRat(pos: Pos): void{ |
| 86 | var rat: Rat = new Rat(this, pos); |
no test coverage detected