mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
20 lines
445 B
C++
20 lines
445 B
C++
|
|
#include "scriptmanager.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace MWScript
|
|
{
|
|
ScriptManager::ScriptManager (const ESMS::ESMStore& store, bool verbose)
|
|
: mStore (store), mVerbose (verbose)
|
|
{}
|
|
|
|
void ScriptManager::run (const std::string& name/*, Compiler::Context& compilerContext,
|
|
Interpreter::Context& interpreterContext, Locals& locals*/)
|
|
{
|
|
std::cout << "script request: " << name << std::endl;
|
|
|
|
}
|
|
}
|
|
|