1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-27 22:49:25 +02:00

fixed serialization issues

This commit is contained in:
Henning Koehler
2017-09-10 15:20:47 +12:00
parent 3e0022be27
commit d594845c32
3 changed files with 17 additions and 1 deletions

View File

@@ -1565,6 +1565,16 @@ void LimiterList::add( TLimiterPtr limiter )
limiters.push_back(limiter);
}
// Updaters
IUpdater::~IUpdater()
{
}
ScalingUpdater::ScalingUpdater() : valPer20(0), stepSize(1)
{
}
ScalingUpdater::ScalingUpdater(int valPer20, int stepSize) : valPer20(valPer20), stepSize(stepSize)
{
}