2010-08-03 11:14:57 +02:00
|
|
|
#include "classes.hpp"
|
|
|
|
|
2023-07-30 18:16:55 +02:00
|
|
|
#include <components/esm4/loadacti.hpp>
|
|
|
|
#include <components/esm4/loadalch.hpp>
|
|
|
|
#include <components/esm4/loadammo.hpp>
|
|
|
|
#include <components/esm4/loadarmo.hpp>
|
|
|
|
#include <components/esm4/loadbook.hpp>
|
|
|
|
#include <components/esm4/loadclot.hpp>
|
|
|
|
#include <components/esm4/loadcont.hpp>
|
|
|
|
#include <components/esm4/loadcrea.hpp>
|
|
|
|
#include <components/esm4/loaddoor.hpp>
|
2023-09-24 09:08:02 +03:00
|
|
|
#include <components/esm4/loadflor.hpp>
|
2023-07-30 18:16:55 +02:00
|
|
|
#include <components/esm4/loadfurn.hpp>
|
2023-10-30 23:33:11 +03:00
|
|
|
#include <components/esm4/loadimod.hpp>
|
2023-07-30 18:16:55 +02:00
|
|
|
#include <components/esm4/loadingr.hpp>
|
|
|
|
#include <components/esm4/loadligh.hpp>
|
|
|
|
#include <components/esm4/loadmisc.hpp>
|
2023-10-27 21:22:43 +03:00
|
|
|
#include <components/esm4/loadmstt.hpp>
|
2023-07-30 18:16:55 +02:00
|
|
|
#include <components/esm4/loadnpc.hpp>
|
|
|
|
#include <components/esm4/loadstat.hpp>
|
2023-08-15 06:23:38 +00:00
|
|
|
#include <components/esm4/loadterm.hpp>
|
2023-07-30 18:16:55 +02:00
|
|
|
#include <components/esm4/loadtree.hpp>
|
|
|
|
#include <components/esm4/loadweap.hpp>
|
2023-04-09 14:16:58 +02:00
|
|
|
|
2010-08-03 11:14:57 +02:00
|
|
|
#include "activator.hpp"
|
2010-08-03 15:24:44 +02:00
|
|
|
#include "apparatus.hpp"
|
2010-08-03 14:14:04 +02:00
|
|
|
#include "armor.hpp"
|
2016-01-02 00:49:53 +01:00
|
|
|
#include "bodypart.hpp"
|
2010-08-03 15:24:44 +02:00
|
|
|
#include "book.hpp"
|
|
|
|
#include "clothing.hpp"
|
|
|
|
#include "container.hpp"
|
2010-08-03 11:49:12 +02:00
|
|
|
#include "creature.hpp"
|
2010-08-03 15:24:44 +02:00
|
|
|
#include "creaturelevlist.hpp"
|
|
|
|
#include "door.hpp"
|
|
|
|
#include "ingredient.hpp"
|
|
|
|
#include "itemlevlist.hpp"
|
|
|
|
#include "light.hpp"
|
|
|
|
#include "lockpick.hpp"
|
|
|
|
#include "misc.hpp"
|
2010-08-03 11:49:12 +02:00
|
|
|
#include "npc.hpp"
|
2010-08-03 15:24:44 +02:00
|
|
|
#include "potion.hpp"
|
|
|
|
#include "probe.hpp"
|
|
|
|
#include "repair.hpp"
|
|
|
|
#include "static.hpp"
|
2016-01-02 00:49:53 +01:00
|
|
|
#include "weapon.hpp"
|
2010-08-03 11:14:57 +02:00
|
|
|
|
2023-04-10 02:42:27 +02:00
|
|
|
#include "esm4base.hpp"
|
2023-08-02 00:55:16 +02:00
|
|
|
#include "esm4npc.hpp"
|
|
|
|
#include "light4.hpp"
|
2023-04-10 02:42:27 +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();
|
2023-01-22 19:03:19 +01:00
|
|
|
|
2023-04-10 02:42:27 +02:00
|
|
|
ESM4Named<ESM4::Activator>::registerSelf();
|
|
|
|
ESM4Named<ESM4::Ammunition>::registerSelf();
|
|
|
|
ESM4Named<ESM4::Armor>::registerSelf();
|
|
|
|
ESM4Named<ESM4::Book>::registerSelf();
|
|
|
|
ESM4Named<ESM4::Clothing>::registerSelf();
|
2023-08-02 00:55:16 +02:00
|
|
|
ESM4Named<ESM4::Creature>::registerSelf();
|
2023-04-10 02:42:27 +02:00
|
|
|
ESM4Named<ESM4::Container>::registerSelf();
|
|
|
|
ESM4Named<ESM4::Door>::registerSelf();
|
2023-09-24 09:08:02 +03:00
|
|
|
ESM4Named<ESM4::Flora>::registerSelf();
|
2023-05-20 18:43:55 +02:00
|
|
|
ESM4Named<ESM4::Furniture>::registerSelf();
|
2023-04-10 02:42:27 +02:00
|
|
|
ESM4Named<ESM4::Ingredient>::registerSelf();
|
2023-10-30 23:33:11 +03:00
|
|
|
ESM4Named<ESM4::ItemMod>::registerSelf();
|
2023-08-02 00:55:16 +02:00
|
|
|
ESM4Light::registerSelf();
|
2023-04-10 02:42:27 +02:00
|
|
|
ESM4Named<ESM4::MiscItem>::registerSelf();
|
2023-10-27 21:22:43 +03:00
|
|
|
ESM4Named<ESM4::MovableStatic>::registerSelf();
|
2023-08-02 00:55:16 +02:00
|
|
|
ESM4Npc::registerSelf();
|
|
|
|
ESM4Named<ESM4::Potion>::registerSelf();
|
2023-04-10 02:42:27 +02:00
|
|
|
ESM4Static::registerSelf();
|
2023-08-15 06:23:38 +00:00
|
|
|
ESM4Named<ESM4::Terminal>::registerSelf();
|
2023-05-20 18:43:55 +02:00
|
|
|
ESM4Tree::registerSelf();
|
2023-04-10 02:42:27 +02:00
|
|
|
ESM4Named<ESM4::Weapon>::registerSelf();
|
2010-08-03 11:14:57 +02:00
|
|
|
}
|
|
|
|
}
|