-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSpace.cpp
More file actions
114 lines (81 loc) · 1.44 KB
/
Copy pathSpace.cpp
File metadata and controls
114 lines (81 loc) · 1.44 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include "Space.h"
#include<iostream>
using namespace std;
Space::Space(std::string n, std::string t)
:name{ n }, type{ t } {}
std::string Space::getName() {
return this->name;
}
std::string Space::getType() {
return this->type;
}
Space::~Space() {
}
std::string Space::toString() {
return "";
}
std::string Space::getPropertyType() {
return "Not a property.";
}
std::string Space::getOwner() {
return "No owner can exist.";
}
void Space::setOwner(std::string newOwner) {
}
void Space::setNumHouses(int newNumHouses) {
}
void Space::setNumHotels(int newNumHotels) {
}
void Space::setNumTurrets(int newNumTurrets) {
}
int Space::getCost() {
return 0;
}
int Space::getNumHouses() {
return 0;
}
void Space::addHouse() {
}
void Space::addHotel() {
}
int Space::getNumTurrets() {
return 0;
}
int Space::getNumHotels() {
return 0;
}
int Space::getOneHouseRent() {
return 0;
}
int Space::getTwoHouseRent() {
return 0;
}
int Space::getThreeHouseRent() {
return 0;
}
int Space::getFourHouseRent() {
return 0;
}
int Space::getHotelRent() {
return 0;
}
int Space::getRent() {
return 0;
}
int Space::getRailroadRent(Player& player, std::vector<Space*>& spaces) {
return 0;
}
int Space::getUtilRent(Player& player, std::vector<Space*>& spaces, int roll) {
return 0;
}
int Space::getHouseCost() {
return 0;
}
std::string Space::getColor() {
return "NEUTRAL";
}
bool Space::isMortgaged() {
return false;
}
void Space::setMortgage() {
}