ソースを参照

Update README.md

Git-Leon 6 年 前
コミット
afe8788478
コミット者のEメールアドレスに関連付けられたアカウントが存在しません
共有1 個のファイルを変更した5 個の追加6 個の削除を含む
  1. 5
    6
      README.md

+ 5
- 6
README.md ファイルの表示

@@ -1,20 +1,19 @@
1
-## TC-Casino
1
+# TC-Casino
2
+* So in this lab you will be creating a casino based game.
2 3
 
3
-So in this lab you will be creating a casino based game.
4
-
5
-# (MVP) Minimum Viable Product
4
+## Minimum Viable Product (MVP)
6 5
 * Your application must have at the very least 3 games:
7 6
   * Go Fish a card game
8 7
   * BlackJack a card game
9 8
   * Craps a dice game
10 9
 
11
-# Specs
10
+## Specs
12 11
 * This repo contains a file named [UML.pdf](https://github.com/Zipcoder/CR-MacroLabs-OOP-Casino/blob/master/UML.pdf)
13 12
 * The UML displays 2 interfaces which you have to create: `Game`, and `Gamble`
14 13
   * Each Game must implement the `Game` interface
15 14
   * Games that involve gambling should implement `Gamble`.
16 15
 
17
-# Developmental Notes
16
+## Developmental Notes
18 17
 * Go fish is a friendly game and should not involve gambling.
19 18
 * `BlackJack` and `GoFish` are both Card Games and should therefore inherit from a common `CardGame`.
20 19
 * Any common logic or fields between the games should live CardGame class, **not** BlackJack **nor** GoFish.