pioneer/src/scenegraph/Lua.cpp

20 lines
442 B
C++

// Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
#include "Lua.h"
#include "Model.h"
#include "ModelSkin.h"
#include "lua/LuaObject.h"
namespace SceneGraph {
namespace Lua {
void Init()
{
LuaObject<SceneGraph::Model>::RegisterClass();
LuaObject<SceneGraph::ModelSkin>::RegisterClass();
}
} // namespace Lua
} // namespace SceneGraph