mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-21 10:11:30 +00:00
9 lines
169 B
C++
9 lines
169 B
C++
#include <sol.hpp>
|
|
#include "../npc.h"
|
|
|
|
void lua_register_npc(sol::state *state) {
|
|
state->new_usertype<NPC>("NPC",
|
|
sol::base_classes, sol::bases<Mob, Entity>()
|
|
);
|
|
}
|