2010-08-03 11:14:57 +02:00
|
|
|
#include "classes.hpp"
|
|
|
|
|
|
|
|
#include "activator.hpp"
|
2010-08-03 11:49:12 +02:00
|
|
|
#include "creature.hpp"
|
|
|
|
#include "npc.hpp"
|
2010-08-03 14:14:04 +02:00
|
|
|
#include "weapon.hpp"
|
|
|
|
#include "armor.hpp"
|
2010-08-03 15:24:44 +02:00
|
|
|
#include "potion.hpp"
|
|
|
|
#include "apparatus.hpp"
|
|
|
|
#include "book.hpp"
|
|
|
|
#include "clothing.hpp"
|
|
|
|
#include "container.hpp"
|
|
|
|
#include "door.hpp"
|
|
|
|
#include "ingredient.hpp"
|
|
|
|
#include "creaturelevlist.hpp"
|
|
|
|
#include "itemlevlist.hpp"
|
|
|
|
#include "light.hpp"
|
|
|
|
#include "lockpick.hpp"
|
|
|
|
#include "misc.hpp"
|
|
|
|
#include "probe.hpp"
|
|
|
|
#include "repair.hpp"
|
|
|
|
#include "static.hpp"
|
2016-01-02 00:49:53 +01:00
|
|
|
#include "bodypart.hpp"
|
2010-08-03 11:14:57 +02:00
|
|
|
|
2010-08-03 13:17:31 +02:00
|
|
|
namespace MWClass
|
2010-08-03 11:14:57 +02:00
|
|
|
{
|
|
|
|
void registerClasses()
|
|
|
|
{
|
|
|
|
Activator::registerSelf();
|
2010-08-03 11:49:12 +02:00
|
|
|
Creature::registerSelf();
|
|
|
|
Npc::registerSelf();
|
2010-08-03 14:14:04 +02:00
|
|
|
Weapon::registerSelf();
|
|
|
|
Armor::registerSelf();
|
2010-08-03 15:24:44 +02:00
|
|
|
Potion::registerSelf();
|
|
|
|
Apparatus::registerSelf();
|
|
|
|
Book::registerSelf();
|
|
|
|
Clothing::registerSelf();
|
|
|
|
Container::registerSelf();
|
|
|
|
Door::registerSelf();
|
|
|
|
Ingredient::registerSelf();
|
|
|
|
CreatureLevList::registerSelf();
|
|
|
|
ItemLevList::registerSelf();
|
|
|
|
Light::registerSelf();
|
|
|
|
Lockpick::registerSelf();
|
2011-06-19 18:14:03 +02:00
|
|
|
Miscellaneous::registerSelf();
|
2010-08-03 15:24:44 +02:00
|
|
|
Probe::registerSelf();
|
|
|
|
Repair::registerSelf();
|
|
|
|
Static::registerSelf();
|
2016-01-02 00:49:53 +01:00
|
|
|
BodyPart::registerSelf();
|
2010-08-03 11:14:57 +02:00
|
|
|
}
|
|
|
|
}
|