Lua_Encounter doesn't need to expose constructor

This commit is contained in:
Russell Kinasz 2015-06-05 12:57:53 -07:00
parent 6cb1861c91
commit b45f0f9dbc

View File

@ -7,8 +7,7 @@
luabind::scope lua_register_encounter() {
return luabind::class_<Lua_Encounter>("Encounter")
.def(luabind::constructor<>());
return luabind::class_<Lua_Encounter>("Encounter");
}
#endif