| 231 | return 0; |
| 232 | } |
| 233 | static int GetSeed(lua_State* L)LNOEXCEPT |
| 234 | { |
| 235 | fcyRandomWELL512* p = static_cast<fcyRandomWELL512*>(luaL_checkudata(L, 1, TYPENAME_RANDGEN)); |
| 236 | lua_pushnumber(L, (lua_Number)p->GetRandSeed()); |
| 237 | return 1; |
| 238 | } |
| 239 | static int Int(lua_State* L)LNOEXCEPT |
| 240 | { |
| 241 | fcyRandomWELL512* p = static_cast<fcyRandomWELL512*>(luaL_checkudata(L, 1, TYPENAME_RANDGEN)); |
nothing calls this directly
no outgoing calls
no test coverage detected