mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 19:56:42 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 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();
 | |
|     }
 | |
| }
 |