Git-Leon 6 лет назад
Родитель
Сommit
afe8788478
Аккаунт пользователя с таким Email не найден
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.