1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 16:49:55 +00:00
openmw-tes3mp/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