このサイトはJavaScriptを使用しています
ホーム
エクスプローラ
Yoda
Portal
Forum
ヘルプ
サインイン
jonathan-hinds
/
ZCW-OOP-Casino
フォーク元
Cohort4.2/ZCW-OOP-Casino
ウォッチ
1
お気に入りに登録
0
フォーク
3
コード
課題
0
プルリクエスト
3
リリース
0
Wiki
アクティビティ
23
コミット
6
ブランチ
ツリー:
70896e6745
jonDev
master
stud
war
working
yahtzee
ブランチ
タグ
${ item.name }
ブランチ
${ searchTerm }
を作成
'70896e6745' から
${ noResults }
ZCW-OOP-Casino
/
README.md
README.md
999B
履歴
Raw形式
ZCW-Casino
Objective:
To create a casino simulation.
Minimum Viable Product (MVP)
Your application must have at the very least 3 games:
Go Fish a card game
BlackJack a card game
Craps a dice game
Specs
The project should include some concept of
Player
class
Player
objects should be created upon input from a user.
Game
interface
Contract which ensures that a class enforces some aspect of
playing
.
Gamble
interface
Contract which ensures that a class enforces some aspect of
waging money
.
Developmental Notes
Go fish is a friendly game and should not involve gambling.
BlackJack
and
GoFish
are both Card Games and should therefore inherit from a common
CardGame
.
Any common logic or fields between the games should live CardGame class,
not
BlackJack
nor
GoFish.
You must have a completed and approved UML diagram before you proceed to do any development
All public methods should be tested.