mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 11:23:51 +00:00
20 lines
359 B
C++
20 lines
359 B
C++
|
|
#include "classes.hpp"
|
|
|
|
#include "activator.hpp"
|
|
#include "creature.hpp"
|
|
#include "npc.hpp"
|
|
#include "weapon.hpp"
|
|
#include "armor.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
void registerClasses()
|
|
{
|
|
Activator::registerSelf();
|
|
Creature::registerSelf();
|
|
Npc::registerSelf();
|
|
Weapon::registerSelf();
|
|
Armor::registerSelf();
|
|
}
|
|
}
|