mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-03 23:45:32 +00:00
13 lines
232 B
C++
13 lines
232 B
C++
|
#include "actorutil.hpp"
|
||
|
|
||
|
#include "../mwbase/world.hpp"
|
||
|
#include "../mwbase/environment.hpp"
|
||
|
|
||
|
namespace MWMechanics
|
||
|
{
|
||
|
MWWorld::Ptr getPlayer()
|
||
|
{
|
||
|
return MWBase::Environment::get().getWorld()->getPlayerPtr();
|
||
|
}
|
||
|
}
|