mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 09:49:55 +00:00
22 lines
No EOL
414 B
C++
22 lines
No EOL
414 B
C++
|
|
#include "scriptcontext.hpp"
|
|
|
|
bool CSMWorld::ScriptContext::canDeclareLocals() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
char CSMWorld::ScriptContext::getGlobalType (const std::string& name) const
|
|
{
|
|
return ' ';
|
|
}
|
|
|
|
char CSMWorld::ScriptContext::getMemberType (const std::string& name, const std::string& id) const
|
|
{
|
|
return ' ';
|
|
}
|
|
|
|
bool CSMWorld::ScriptContext::isId (const std::string& name) const
|
|
{
|
|
return false;
|
|
} |