-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyGame.h
47 lines (37 loc) · 774 Bytes
/
MyGame.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// MyGame.h
// SerpientesEscaleras
//
// Created by Rosa Guadalupe Paredes Juarez on 18/05/20.
// Copyright © 2020 Rosa Paredes. All rights reserved.
//
#ifndef MyGame_h
#define MyGame_h
#include <iostream>
#include <vector>
#include "Board.h"
#include "Player.h"
#include "Dice.h"
#include "Turn.h"
using namespace std;
class MyGame {
private:
Board board;
vector<Player> players;
int turn;
Dice dice;
int numberOfTiles;
int numberOfSnakes;
int numberOfLadders;
int penalty;
int reward;
int numberOfPlayers;
int numberOfTurns;
char gameType;
void initialize();
public:
MyGame();
MyGame(int, int, int, int, int, int, int, char);
void start();
};
#endif /* MyGame_h */