Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
stuff
  • Loading branch information
Joe Hill committed Apr 19, 2017
1 parent 1172efd commit c5ad376
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 12 deletions.
6 changes: 0 additions & 6 deletions bin/.gitignore

This file was deleted.

Binary file modified bin/model/DealTile.class
Binary file not shown.
Binary file added bin/model/DownsizeTile.class
Binary file not shown.
Binary file added bin/model/Handler.class
Binary file not shown.
Binary file added bin/view/DownSizeWindow$1.class
Binary file not shown.
Binary file added bin/view/DownSizeWindow.class
Binary file not shown.
Binary file added bin/view/GameboardWindow.class
Binary file not shown.
Binary file added bin/view/Positioner.class
Binary file not shown.
Binary file added bin/view/TileButton.class
Binary file not shown.
Binary file added bin/view/gameboard.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/view/piece1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/view/piece2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/view/piece3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/view/piece4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions src/model/DealTile.java
Expand Up @@ -7,15 +7,13 @@ import java.util.Scanner;

public class DealTile extends Tile
{
private static SmallDealStack _smallDealStack;
private static BigDealStack _bigDealStack;
private static SmallDealStack _smallDealStack = new SmallDealStack();;
private static BigDealStack _bigDealStack = new BigDealStack();
private static int _stockPrice;

public DealTile(String type, int boardIndex)
{
super(type, boardIndex);
_smallDealStack = new SmallDealStack();
_bigDealStack = new BigDealStack();
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions src/model/MarketTile.java
@@ -1,7 +1,7 @@
package model;

public class MarketTile extends Tile {

public class MarketTile extends Tile
{
public MarketTile(String type, int boardIndex) {
super(type, boardIndex);
// TODO Auto-generated constructor stub
Expand Down

0 comments on commit c5ad376

Please sign in to comment.