1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 22:23:54 +00:00
openmw/apps/openmw/mwworld/action.hpp

23 lines
407 B
C++

#ifndef GAME_MWWORLD_ACTION_H
#define GAME_MWWORLD_ACTION_H
namespace MWWorld
{
/// \brief Abstract base for actions
class Action
{
// not implemented
Action (const Action& action);
Action& operator= (const Action& action);
public:
Action() {}
virtual ~Action() {}
virtual void execute() = 0;
};
}
#endif