Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Initial commit f0ade48 on Feb 9, 2019
1 contributor
15 lines (11 sloc) 319 Bytes
#ifndef _RADIALWIPE_S_H_
#define _RADIALWIPE_S_H_
#include <lua.hpp>
#include <Windows.h>
int RadialWipe_Core(lua_State *L);
int RadialWipe(lua_State *L) {
int r = RadialWipe_Core(L);
return r;
// Lua 側での戻り値の個数を返す(data だけを返すので 1)
}
#endif // _RADIALWIPE_S_H_
You can’t perform that action at this time.