-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTurn.h
More file actions
37 lines (30 loc) · 699 Bytes
/
Copy pathTurn.h
File metadata and controls
37 lines (30 loc) · 699 Bytes
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
//
// Turn.h
// Tablero SUPER FINAL
//
// Created by Matías Méndez on 06/06/20.
// Copyright © 2020 Matías Méndez. All rights reserved.
//
#ifndef Turn_h
#define Turn_h
#include <iostream>
#include "Dice.h"
#include "Board.h"
using namespace std;
class Turn{
private:
int turnAct;
int numTurns;
int playerT;
int tileTI;
char typeTileT;
int tileTF;
int diceT;
public:
Turn();
Turn(int, int, int, int, char, int);
int getNumTurns();
//nota que si no le pones friend no funciona, asi le indicas que se le pasaran atributos de otros clases creo
friend ostream & operator << (ostream &os, const Turn &t2);
};
#endif /* Turn_h */