1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-27 22:49:25 +02:00
Save format changed, removed compatibility workarounds.
This commit is contained in:
Michał W. Urbańczyk
2014-02-19 01:04:27 +00:00
parent a3cad2883f
commit 1e555a8ee3
10 changed files with 728 additions and 328 deletions

View File

@@ -88,6 +88,18 @@ public:
}
};
template <>
class CApplyOnGH<CPack> : public CBaseForGHApply
{
public:
bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack, PlayerColor player) const
{
logGlobal->errorStream() << "Cannot apply on GH plain CPack!";
assert(0);
return false;
}
};
static CApplier<CBaseForGHApply> *applier = nullptr;
CMP_stack cmpst ;