LuaBox
Loading...
Searching...
No Matches
Yield.h
Go to the documentation of this file.
1#pragma once
2
3#include "lua_include.h"
4#include "global.h"
5
11
12int Yield(lua_State* L_)
13{
14 return lua_yield(L, 0);
15}
int Yield(lua_State *L_)
Yield execution from the current Lua coroutine.
Definition Yield.h:12