forked from teamnwah/openmw-tes3coop
24 lines
373 B
C++
24 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
|
|
|