forked from mirror/openmw-tes3mp
16 lines
253 B
C++
16 lines
253 B
C++
|
|
#include "classes.hpp"
|
|
|
|
#include "activator.hpp"
|
|
#include "creature.hpp"
|
|
#include "npc.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
void registerClasses()
|
|
{
|
|
Activator::registerSelf();
|
|
Creature::registerSelf();
|
|
Npc::registerSelf();
|
|
}
|
|
}
|