File: estategroup.h

package info (click to toggle)
monopd 0.10.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,008 kB
  • sloc: cpp: 6,263; sh: 837; makefile: 35
file content (45 lines) | stat: -rw-r--r-- 1,345 bytes parent folder | download | duplicates (5)
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
// Copyright © 2002-2003 Rob Kaper <cap@capsi.com>
//             2010-2015 Sylvain Rochet <gradator@gradator.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// version 2 as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; see the file COPYING. If not, see
// <http://www.gnu.org/licenses/>.

#ifndef MONOP_ESTATEGROUP_H
#define MONOP_ESTATEGROUP_H

#include <string>

#include "gameobject.h"

class Game;
class Player;

class EstateGroup : public GameObject
{
public:
	EstateGroup(int id, Game *game, std::string name);

	void setPrice(unsigned int price);
	unsigned int price();
	void setHousePrice(unsigned int housePrice);
	unsigned int housePrice();
	void setRentMath(const std::string rentMath);
	void setRentVar(const std::string rentVar);
	int rent(Player *pLand, const std::string &rentMath);

private:
	std::string m_rentMath, m_rentVar;
	unsigned int m_price, m_housePrice;
};

#endif // MONOP_GROUP_H