-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedificio.cpp
56 lines (27 loc) · 1.15 KB
/
edificio.cpp
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
48
49
50
51
52
53
54
55
56
#include "edificio.h"
// ------------------------------------------------------------------------------------------------------------
Edificio::Edificio(){
this -> identificador = ' ';
this -> creador = NADIE;
this -> deposito = 0;
}
// ------------------------------------------------------------------------------------------------------------
Edificio::Edificio(char identificador, Jugador_t creador, double deposito){
this -> identificador = identificador;
this -> creador = creador;
this -> deposito = deposito;
}
// ------------------------------------------------------------------------------------------------------------
double Edificio::recolectar_recursos(){
double acumulado = this -> deposito;
this -> deposito = 0;
return acumulado;
}
// ------------------------------------------------------------------------------------------------------------
char Edificio::obtener_identificador(){
return this -> identificador;
}
// ------------------------------------------------------------------------------------------------------------
Jugador_t Edificio::obtener_creador(){
return creador;
}