1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-17 00:07:41 +02:00
This commit is contained in:
AlexVinS
2016-08-30 11:45:05 +03:00
parent a50a32405d
commit cf1d5d0bc9
3 changed files with 11 additions and 1 deletions

View File

@ -30,6 +30,10 @@ CIdentifierStorage::CIdentifierStorage():
{
}
CIdentifierStorage::~CIdentifierStorage()
{
}
void CIdentifierStorage::checkIdentifier(std::string & ID)
{
if (boost::algorithm::ends_with(ID, "."))
@ -558,6 +562,10 @@ CModHandler::CModHandler()
}
CModHandler::~CModHandler()
{
}
void CModHandler::loadConfigFromFile (std::string name)
{
std::string paths;