1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00
OpenMW/apps/openmw/mwworld/actionrepair.hpp

21 lines
360 B
C++
Raw Normal View History

2013-03-23 08:16:46 +01:00
#ifndef GAME_MWWORLD_ACTIONREPAIR_H
#define GAME_MWWORLD_ACTIONREPAIR_H
#include "action.hpp"
namespace MWWorld
{
class ActionRepair : public Action
{
bool mForce;
virtual void executeImp (const Ptr& actor);
2013-03-23 08:16:46 +01:00
public:
/// @param item repair hammer
ActionRepair(const Ptr& item, bool force=false);
2013-03-23 08:16:46 +01:00
};
}
#endif