| 62 | // *********************************************************************** |
| 63 | |
| 64 | int LuaGetKeyDown(lua_State* pLua) { |
| 65 | Key key = (Key)luaL_checkinteger(pLua, 1); |
| 66 | lua_pushboolean(pLua, GetKeyDown(key)); |
| 67 | return 1; |
| 68 | } |
| 69 | |
| 70 | // *********************************************************************** |
| 71 |
nothing calls this directly
no test coverage detected