1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 16:19:56 +00:00
openmw-tes3mp/apps/openmw/mwworld/action.hpp

24 lines
407 B
C++
Raw Normal View History

2010-08-03 16:20:15 +00:00
#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;
2010-08-03 16:20:15 +00:00
};
}
#endif