mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
eb50ae3aa7
- Minor refactor for artifact and hero pool management
34 lines
609 B
C++
34 lines
609 B
C++
/*
|
|
* ObjectDistributor.h, 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 "RmgObject.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
class CGObjectInstance;
|
|
class ObjectTemplate;
|
|
|
|
class ObjectDistributor : public Modificator
|
|
{
|
|
void distributeLimitedObjects();
|
|
void distributeSeerHuts();
|
|
void distributePrisons();
|
|
|
|
public:
|
|
MODIFICATOR(ObjectDistributor);
|
|
|
|
void process() override;
|
|
void init() override;
|
|
};
|
|
|
|
VCMI_LIB_NAMESPACE_END |