Files
enduro2d/sources/enduro2d/high/bindings/high_binds/library_binds.cpp
2019-11-02 03:06:00 +07:00

19 lines
624 B
C++

/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018-2019, by Matvey Cherevko (blackmatov@gmail.com)
******************************************************************************/
#include "_high_binds.hpp"
#include <enduro2d/high/library.hpp>
namespace e2d::bindings::high
{
void bind_library(sol::state& l) {
l["e2d"].get_or_create<sol::table>()
["high"].get_or_create<sol::table>()
.new_usertype<library>("library");
}
}