Skip to content

Commit

Permalink
Game class added
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron committed Mar 28, 2016
1 parent 97a12bd commit e180017
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/model/Game.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package model;

public class Game {
private Board board;
private Player player_one, player_two;

public Game(Player p1, Player p2) {
this.player_one = p1;
this.player_two = p2;
this.board = new Board();
}

}

0 comments on commit e180017

Please sign in to comment.