forked from DaivsP/Maven.Casino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9da2040
commit 9dcfd8f
Showing
28 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.CasinoClasses; | ||
|
||
public class App { | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/io/zipcoder/casino/CasinoClasses/Casino.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package io.zipcoder.casino.CasinoClasses; | ||
|
||
|
||
import java.util.HashMap; | ||
|
||
public class Casino { | ||
String CasinoName = ""; | ||
HashMap<String, Double> Players; | ||
|
||
public Casino (String CasinoName){ | ||
this.CasinoName = CasinoName; | ||
} | ||
|
||
public static void main(String[] args) { | ||
// write your tests before you start fucking with this | ||
} | ||
|
||
|
||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/CasinoClasses/ConsoleInput.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.CasinoClasses; | ||
|
||
public interface ConsoleInput { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/CasinoClasses/ConsoleOutput.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.CasinoClasses; | ||
|
||
public interface ConsoleOutput { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/CasinoClasses/Membership.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.CasinoClasses; | ||
|
||
public class Membership { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.CasinoClasses; | ||
|
||
public class Storage { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/BlackJack.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public class BlackJack { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/Card.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public class Card { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/CardGame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public abstract class CardGame { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/Deck.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public class Deck { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/EnumRank.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public enum EnumRank { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/EnumSuit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public enum EnumSuit { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/CardGames/GoFish.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.CardGames; | ||
|
||
public class GoFish { | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/io/zipcoder/casino/GameClasses/DiceGames/Craps.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package io.zipcoder.casino.GameClasses.DiceGames; | ||
|
||
public class Craps { | ||
|
||
} | ||
|
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/DiceGames/Dice.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.DiceGames; | ||
|
||
public class Dice { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/DiceGames/DiceGame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.DiceGames; | ||
|
||
public abstract class DiceGame { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/DiceGames/OU7.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses.DiceGames; | ||
|
||
public class OU7 { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/io/zipcoder/casino/GameClasses/GamblingGame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses; | ||
|
||
public interface GamblingGame { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.GameClasses; | ||
|
||
public interface Game { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class BlackJackPlayer { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class CrapsPlayer { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class Dealer { | ||
} |
5 changes: 5 additions & 0 deletions
5
src/main/java/io/zipcoder/casino/Player/GamblerAttributes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public interface GamblerAttributes { | ||
boolean isadult = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class GamblingPlayer extends Player implements GamblerAttributes { | ||
//can play all games | ||
//can bet, can win, can cashout. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class GoFishPlayer { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class Hand { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public class OU7Player { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package io.zipcoder.casino.Player; | ||
|
||
public abstract class Player { | ||
String playerName = ""; | ||
Double chips = 0.0; | ||
Double cash = 0.0; | ||
boolean isAdult = true; | ||
|
||
} |