mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
16 lines
280 B
C++
16 lines
280 B
C++
#ifndef MWLUA_SOUNDBINDINGS_H
|
|
#define MWLUA_SOUNDBINDINGS_H
|
|
|
|
#include <sol/forward.hpp>
|
|
|
|
#include "context.hpp"
|
|
|
|
namespace MWLua
|
|
{
|
|
sol::table initCoreSoundBindings(const Context&);
|
|
|
|
sol::table initAmbientPackage(const Context& context);
|
|
}
|
|
|
|
#endif // MWLUA_SOUNDBINDINGS_H
|