1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/apps/openmw/mwworld/actiontake.cpp

22 lines
547 B
C++
Raw Normal View History

2010-08-07 20:25:17 +02:00
#include "actiontake.hpp"
#include "../mwbase/environment.hpp"
#include "../mwbase/world.hpp"
#include "../mwbase/windowmanager.hpp"
2010-08-07 20:25:17 +02:00
#include "class.hpp"
#include "containerstore.hpp"
2010-08-07 20:25:17 +02:00
namespace MWWorld
{
2012-09-04 20:56:28 +02:00
ActionTake::ActionTake (const MWWorld::Ptr& object) : Action (true, object) {}
2010-08-07 20:25:17 +02:00
void ActionTake::executeImp (const Ptr& actor)
2010-08-07 20:25:17 +02:00
{
actor.getClass().getContainerStore (actor).add (getTarget(), getTarget().getRefData().getCount(), actor);
2010-08-07 20:25:17 +02:00
MWBase::Environment::get().getWorld()->deleteObject (getTarget());
2010-08-07 20:25:17 +02:00
}
}