Kaynağa Gözat

Update README.md

Git-Leon 6 yıl önce
ebeveyn
işleme
afe8788478
No account linked to committer's email
1 değiştirilmiş dosya ile 5 ekleme ve 6 silme
  1. 5
    6
      README.md

+ 5
- 6
README.md Dosyayı Görüntüle

@@ -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.