| 4 | // *********************************************************************** |
| 5 | |
| 6 | int LuaGetButton(lua_State* pLua) { |
| 7 | ControllerButton button = (ControllerButton)luaL_checkinteger(pLua, 1); |
| 8 | lua_pushboolean(pLua, GetButton(button)); |
| 9 | return 1; |
| 10 | } |
| 11 | |
| 12 | // *********************************************************************** |
| 13 |
nothing calls this directly
no test coverage detected