mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
19 lines
445 B
C++
19 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;
|
|
|
|
}
|
|
}
|
|
|