mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-15 17:09:46 +00:00
17 lines
245 B
C++
17 lines
245 B
C++
#ifndef GAME_MWCLASS_ACTIVATOR_H
|
|
#define GAME_MWCLASS_ACTIVATOR_H
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
class Activator : public MWWorld::Class
|
|
{
|
|
public:
|
|
|
|
|
|
static void registerSelf();
|
|
};
|
|
}
|
|
|
|
#endif
|