LuaInterface.LuaDLL.luaS_pushVector4 C# (CSharp) Method

luaS_pushVector4() private method

private luaS_pushVector4 ( IntPtr l, float x, float y, float z, float w ) : void
l System.IntPtr
x float
y float
z float
w float
return void
        public static extern void luaS_pushVector4(IntPtr l, float x, float y, float z, float w);
        [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
LuaDLL