1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 09:37:53 +00:00
OpenMW/apps/openmw/mwworld/actionopen.hpp

23 lines
402 B
C++
Raw Normal View History

2012-04-15 15:52:39 +00:00
#ifndef GAME_MWWORLD_ACTIONOPEN_H
#define GAME_MWWORLD_ACTIONOPEN_H
#include "action.hpp"
#include "ptr.hpp"
namespace MWWorld
{
class ActionOpen : public Action
{
Ptr mContainer;
public:
ActionOpen (const Ptr& container);
///< \param The Container the Player has activated.
2012-05-11 09:52:07 +00:00
virtual void execute ();
2012-04-15 15:52:39 +00:00
};
}
#endif // ACTIONOPEN_H