mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
18 lines
242 B
C++
18 lines
242 B
C++
|
#ifndef GAME_MWCLASS_LOCKPICK_H
|
||
|
#define GAME_MWCLASS_LOCKPICK_H
|
||
|
|
||
|
#include "../mwworld/class.hpp"
|
||
|
|
||
|
namespace MWClass
|
||
|
{
|
||
|
class Lockpick : public MWWorld::Class
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
|
||
|
static void registerSelf();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|