mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
25 lines
373 B
C++
25 lines
373 B
C++
#ifndef GAME_SOUND_EXTENSIONS_H
|
|
#define GAME_SOUND_EXTENSIONS_H
|
|
|
|
namespace Compiler
|
|
{
|
|
class Extensions;
|
|
}
|
|
|
|
namespace Interpreter
|
|
{
|
|
class Interpreter;
|
|
}
|
|
|
|
namespace MWSound
|
|
{
|
|
// Script-extensions related to sound
|
|
|
|
void registerExtensions (Compiler::Extensions& extensions);
|
|
|
|
void installOpcodes (Interpreter::Interpreter& interpreter);
|
|
}
|
|
|
|
#endif
|
|
|