mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-14 08:07:17 +07:00
19 lines
624 B
C++
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");
|
|
}
|
|
}
|