mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
90985e849e
Moving classes from components/misc into Misc namespace. Note: Misc namespace introduced conflict with ESM::Misc and MWClass::Misc classes, so both of them are renamed to ESM::Miscellaneous and MWClass::Miscellaneous. Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
|
|
#include "classes.hpp"
|
|
|
|
#include "activator.hpp"
|
|
#include "creature.hpp"
|
|
#include "npc.hpp"
|
|
#include "weapon.hpp"
|
|
#include "armor.hpp"
|
|
#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"
|
|
|
|
namespace MWClass
|
|
{
|
|
void registerClasses()
|
|
{
|
|
Activator::registerSelf();
|
|
Creature::registerSelf();
|
|
Npc::registerSelf();
|
|
Weapon::registerSelf();
|
|
Armor::registerSelf();
|
|
Potion::registerSelf();
|
|
Apparatus::registerSelf();
|
|
Book::registerSelf();
|
|
Clothing::registerSelf();
|
|
Container::registerSelf();
|
|
Door::registerSelf();
|
|
Ingredient::registerSelf();
|
|
CreatureLevList::registerSelf();
|
|
ItemLevList::registerSelf();
|
|
Light::registerSelf();
|
|
Lockpick::registerSelf();
|
|
Miscellaneous::registerSelf();
|
|
Probe::registerSelf();
|
|
Repair::registerSelf();
|
|
Static::registerSelf();
|
|
}
|
|
}
|