Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe authored and Joe committed Mar 3, 2017
1 parent 1272333 commit 99d866e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/model/Big_Deals.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package model;

public class Big_Deals extends Card {

Expand Down
7 changes: 4 additions & 3 deletions src/model/Card.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package model;

/*
* this is a very broad object class
Expand Down Expand Up @@ -37,11 +38,11 @@ public Card (String title, String type, Boolean effect, int value, int value2,

_value = value;

_value1 = value2;
_value2 = value2;

_value2 = value3;
_value3 = value3;

_value3 = value4;
_value4 = value4;

}
public String getTitle()
Expand Down
5 changes: 5 additions & 0 deletions src/model/Market_Cards.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
*/
public class Market_Cards extends Card {

public Market_Cards(String title, String type, Boolean effect, int value, int value2, int value3, int value4) {
super(title, type, effect, value, value2, value3, value4);
// TODO Auto-generated constructor stub
}

//profit card - value is how much $ is added
//Not sure how we're working in the descriptions as it's a more graphical concept but for now I'm going to type them out
Card Profit1 = new Card("Small Business Boom!", "profit", true, 250,0,0,0);
Expand Down

0 comments on commit 99d866e

Please sign in to comment.