mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-15 17:46:37 +00:00
15 lines
285 B
C++
15 lines
285 B
C++
#ifndef MWLUA_SOUNDBINDINGS_H
|
|
#define MWLUA_SOUNDBINDINGS_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
sol::table initCoreSoundBindings(const Context& context);
|
|
|
|
sol::table initAmbientPackage(const Context& context);
|
|
}
|
|
|
|
#endif // MWLUA_SOUNDBINDINGS_H
|