You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
253 B
C++
17 lines
253 B
C++
15 years ago
|
|
||
|
#include "classes.hpp"
|
||
|
|
||
|
#include "activator.hpp"
|
||
15 years ago
|
#include "creature.hpp"
|
||
|
#include "npc.hpp"
|
||
15 years ago
|
|
||
15 years ago
|
namespace MWClass
|
||
15 years ago
|
{
|
||
|
void registerClasses()
|
||
|
{
|
||
|
Activator::registerSelf();
|
||
15 years ago
|
Creature::registerSelf();
|
||
|
Npc::registerSelf();
|
||
15 years ago
|
}
|
||
|
}
|