mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-16 09:54:02 +01:00
11 lines
238 B
C++
11 lines
238 B
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
struct lua_State;
|
|
|
|
namespace Luau::Require
|
|
{
|
|
|
|
int lua_require(lua_State* L);
|
|
|
|
} // namespace Luau::Require
|