Permalink
SEED264
Initial commit
f0ade48
on Feb 9, 2019
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up#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_ |