├── LICENSE ├── README.md ├── includes ├── ulua.hpp └── ulua │ ├── closure.hpp │ ├── common.hpp │ ├── coroutine.hpp │ ├── environment.hpp │ ├── ffi.hpp │ ├── function.hpp │ ├── lazy.hpp │ ├── lua_api.hpp │ ├── lua_types.hpp │ ├── named_arguments.hpp │ ├── reference.hpp │ ├── stack.hpp │ ├── state.hpp │ ├── table.hpp │ ├── userdata.hpp │ └── userdata_metatable.hpp ├── ulua.vcxitems └── ulua.vcxitems.filters /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ulua 2 | -------------------------------------------------------------------------------- /includes/ulua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua.hpp -------------------------------------------------------------------------------- /includes/ulua/closure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/closure.hpp -------------------------------------------------------------------------------- /includes/ulua/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/common.hpp -------------------------------------------------------------------------------- /includes/ulua/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/coroutine.hpp -------------------------------------------------------------------------------- /includes/ulua/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/environment.hpp -------------------------------------------------------------------------------- /includes/ulua/ffi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/ffi.hpp -------------------------------------------------------------------------------- /includes/ulua/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/function.hpp -------------------------------------------------------------------------------- /includes/ulua/lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/lazy.hpp -------------------------------------------------------------------------------- /includes/ulua/lua_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/lua_api.hpp -------------------------------------------------------------------------------- /includes/ulua/lua_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/lua_types.hpp -------------------------------------------------------------------------------- /includes/ulua/named_arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/named_arguments.hpp -------------------------------------------------------------------------------- /includes/ulua/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/reference.hpp -------------------------------------------------------------------------------- /includes/ulua/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/stack.hpp -------------------------------------------------------------------------------- /includes/ulua/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/state.hpp -------------------------------------------------------------------------------- /includes/ulua/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/table.hpp -------------------------------------------------------------------------------- /includes/ulua/userdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/userdata.hpp -------------------------------------------------------------------------------- /includes/ulua/userdata_metatable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/includes/ulua/userdata_metatable.hpp -------------------------------------------------------------------------------- /ulua.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/ulua.vcxitems -------------------------------------------------------------------------------- /ulua.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can1357/uLua/HEAD/ulua.vcxitems.filters --------------------------------------------------------------------------------