mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
16 lines
220 B
C++
16 lines
220 B
C++
|
#ifndef GAME_SCRIPT_COMPILERCONTEXT_H
|
||
|
#define GAME_SCRIPT_COMPILERCONTEXT_H
|
||
|
|
||
|
#include <components/compiler/context.hpp>
|
||
|
|
||
|
namespace MWScript
|
||
|
{
|
||
|
class CompilerContext : public Compiler::Context
|
||
|
{
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|