| 70 | // *********************************************************************** |
| 71 | |
| 72 | int LuaGetKeyUp(lua_State* pLua) { |
| 73 | Key key = (Key)luaL_checkinteger(pLua, 1); |
| 74 | lua_pushboolean(pLua, GetKeyUp(key)); |
| 75 | return 1; |
| 76 | } |
| 77 | |
| 78 | // *********************************************************************** |
| 79 |
nothing calls this directly
no test coverage detected