forked from mirror/openmw-tes3mp
17 lines
225 B
C++
17 lines
225 B
C++
#ifndef GAME_MWWORLD_ACTIVATOR_H
|
|
#define GAME_MWWORLD_ACTIVATOR_H
|
|
|
|
#include "class.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
class Activator : public Class
|
|
{
|
|
public:
|
|
|
|
|
|
static void registerSelf();
|
|
};
|
|
}
|
|
|
|
#endif
|