AGS.Plugin.Lua.InvokeLua.lua_isboolean C# (CSharp) Méthode

lua_isboolean() public static méthode

public static lua_isboolean ( IntPtr L, int n ) : bool
L System.IntPtr
n int
Résultat bool
        public static bool lua_isboolean(lua_State L, int n)
        {
            return (lua_type(L, n) == LUA_TBOOLEAN);
        }
InvokeLua