1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-24 19:39:44 +00:00
openmw/apps/openmw/mwworld/actiontake.hpp

19 lines
318 B
C++

#ifndef GAME_MWWORLD_ACTIONTAKE_H
#define GAME_MWWORLD_ACTIONTAKE_H
#include "action.hpp"
#include "ptr.hpp"
namespace MWWorld
{
class ActionTake : public Action
{
virtual void executeImp (const Ptr& actor);
public:
ActionTake (const MWWorld::Ptr& object);
};
}
#endif