mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-02 17:36:40 +00:00
Merge branch 'anonymous_namespace' into 'master'
Move some code to unnamed namespace See merge request OpenMW/openmw!3351
This commit is contained in:
commit
ebf803a00b
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
|
||||
#include "luamanagerimp.hpp"
|
||||
|
||||
namespace MWLua
|
||||
namespace
|
||||
{
|
||||
struct PlaySoundArgs
|
||||
{
|
||||
|
@ -55,7 +55,10 @@ namespace MWLua
|
|||
return MWSound::PlayMode::NoEnvNoScaling;
|
||||
return MWSound::PlayMode::NoEnv;
|
||||
}
|
||||
}
|
||||
|
||||
namespace MWLua
|
||||
{
|
||||
sol::table initAmbientPackage(const Context& context)
|
||||
{
|
||||
sol::table api(context.mLua->sol(), sol::create);
|
||||
|
|
Loading…
Reference in a new issue