Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Sup
  • Loading branch information
Joe Hill committed Mar 15, 2017
1 parent aa7fb94 commit 7559485
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 4 deletions.
Binary file added .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion bin/.gitignore
@@ -1,3 +1,4 @@
/.DS_Store
/controller/
/model/
/view/
/controller/
Binary file modified bin/controller/Cashflow.class
Binary file not shown.
Binary file added src/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion src/controller/Cashflow.java
Expand Up @@ -21,7 +21,7 @@ public class Cashflow
for(int i=0; i<initialSize; i++)
{
int num = i+1;
System.out.println(num + ": " + ((MarketCard) ms.pop()).getDescription()); //Always going to need this cast when getting description unfortunately
System.out.println(num + ": " + ((MarketCard) ms.pop()).getTitle()); //Always going to need this cast when getting description unfortunately
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/model/CardStack.java
Expand Up @@ -47,7 +47,7 @@ public class CardStack extends Stack<Card>
// Randomizes the stack with the cards in the array argument
public void randomizeCards(Card[] cardArray)
{
//CardStack cardStack = new CardStack();
// CardStack cardStack = new CardStack();
ArrayList<Card> cardList = new ArrayList<Card>();
Random r = new Random();

Expand Down
2 changes: 1 addition & 1 deletion src/model/GameBoard.java
Expand Up @@ -4,5 +4,5 @@ public class GameBoard
{
private Tile[] _gameTiles;

// This class should have an array of tiles that goes back to the beginning when it eaches the end
// This class should have an array of tiles that goes back to the beginning when it reaches the end
}

0 comments on commit 7559485

Please sign in to comment.