mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-15 17:46:37 +00:00
Remove .cpp files with small amount of code which don't have additional includes compared to corresponding .hpp files. This reduces the total size of preprocessed code of the project and should reduce compilation time.
23 lines
371 B
C++
23 lines
371 B
C++
#ifndef GAME_SCRIPT_CONSOLEEXTENSIONS_H
|
|
#define GAME_SCRIPT_CONSOLEEXTENSIONS_H
|
|
|
|
namespace Compiler
|
|
{
|
|
class Extensions;
|
|
}
|
|
|
|
namespace Interpreter
|
|
{
|
|
class Interpreter;
|
|
}
|
|
|
|
namespace MWScript
|
|
{
|
|
/// \brief Script functionality limited to the console
|
|
namespace Console
|
|
{
|
|
void installOpcodes(Interpreter::Interpreter& interpreter) {}
|
|
}
|
|
}
|
|
|
|
#endif
|