mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
40 lines
701 B
C++
40 lines
701 B
C++
|
/*
|
||
|
* PrisonHeroPlacer, part of VCMI engine
|
||
|
*
|
||
|
* Authors: listed in file AUTHORS in main folder
|
||
|
*
|
||
|
* License: GNU General Public License v2.0 or later
|
||
|
* Full text of license available in license.txt file, in main folder
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include "../Zone.h"
|
||
|
#include "../Functions.h"
|
||
|
#include "../../mapObjects/ObjectTemplate.h"
|
||
|
|
||
|
VCMI_LIB_NAMESPACE_BEGIN
|
||
|
|
||
|
class CRandomGenerator;
|
||
|
|
||
|
class PrisonHeroPlacer : public Modificator
|
||
|
{
|
||
|
public:
|
||
|
MODIFICATOR(PrisonHeroPlacer);
|
||
|
|
||
|
void process() override;
|
||
|
void init() override;
|
||
|
|
||
|
HeroTypeID drawRandomHero();
|
||
|
|
||
|
private:
|
||
|
void getAllowedHeroes();
|
||
|
|
||
|
protected:
|
||
|
|
||
|
std::vector<HeroTypeID> allowedHeroes;
|
||
|
|
||
|
// TODO: Count allowed heroes?
|
||
|
};
|
||
|
|
||
|
VCMI_LIB_NAMESPACE_END
|