Skip to content

Commit

Permalink
Removed redundant fields
Browse files Browse the repository at this point in the history
  • Loading branch information
asiryk committed Sep 17, 2020
1 parent 97a85f7 commit 09856a1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/core/Game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ import VictoryScreen from './VictoryScreen';
export default class Game {
public app: PIXI.Application;
private playBtn: PlayButton;
private width = 960;
private height = 536;
private reelsContainer: ReelsContainer;
private scoreboard: Scoreboard;
private victoryScreen: VictoryScreen;

constructor() {
this.app = new PIXI.Application({ width: this.width, height: this.height });
this.app = new PIXI.Application({ width: 960, height: 536 });
window.document.body.appendChild(this.app.view);
new Loader(this.app, this.init.bind(this));
}
Expand Down

0 comments on commit 09856a1

Please sign in to comment.