1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-11 01:10:26 +02:00
Files
vcmi/lib/CScriptingModule.cpp

35 lines
512 B
C++
Raw Normal View History

/*
* CScriptingModule.cpp, 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
*
*/
#include "StdInc.h"
#include "CScriptingModule.h"
#if SCRIPTING_ENABLED
namespace scripting
{
ContextBase::ContextBase(vstd::CLoggerBase * logger_)
: logger(logger_)
{
}
ContextBase::~ContextBase() = default;
Module::Module()
{
}
Module::~Module() = default;
}
#endif