2013-05-19 16:40:37 +00:00
|
|
|
#ifndef MWMECHANICS_SECURITY_H
|
|
|
|
#define MWMECHANICS_SECURITY_H
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
|
|
|
namespace MWMechanics
|
|
|
|
{
|
|
|
|
|
|
|
|
/// @brief implementation of Security skill
|
|
|
|
class Security
|
|
|
|
{
|
|
|
|
public:
|
2013-05-19 17:48:51 +00:00
|
|
|
static void pickLock (const MWWorld::Ptr& actor, const MWWorld::Ptr& lock, const MWWorld::Ptr& lockpick,
|
|
|
|
std::string& resultMessage, std::string& resultSound);
|
|
|
|
static void probeTrap (const MWWorld::Ptr& actor, const MWWorld::Ptr& trap, const MWWorld::Ptr& probe,
|
|
|
|
std::string& resultMessage, std::string& resultSound);
|
2013-05-19 16:40:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|