mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 07:39:42 +00:00
18 lines
225 B
C++
18 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
|