mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
22 lines
617 B
C++
22 lines
617 B
C++
#ifndef MWMECHANICS_SECURITY_H
|
|
#define MWMECHANICS_SECURITY_H
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
|
|
/// @brief implementation of Security skill
|
|
class Security
|
|
{
|
|
public:
|
|
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);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|