mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
19 lines
374 B
C++
19 lines
374 B
C++
#ifndef GAME_MWWORLD_ACTIONOPEN_H
|
|
#define GAME_MWWORLD_ACTIONOPEN_H
|
|
|
|
#include "action.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
class ActionOpen : public Action
|
|
{
|
|
void executeImp(const MWWorld::Ptr& actor) override;
|
|
|
|
public:
|
|
ActionOpen(const Ptr& container);
|
|
///< \param container The Container the Player has activated.
|
|
};
|
|
}
|
|
|
|
#endif // ACTIONOPEN_H
|