| 36 | // *********************************************************************** |
| 37 | |
| 38 | int LuaGetMousePosition(lua_State* pLua) { |
| 39 | Vec2i mousePos = GetMousePosition(); |
| 40 | lua_pushinteger(pLua, mousePos.x); |
| 41 | lua_pushinteger(pLua, mousePos.y); |
| 42 | return 2; |
| 43 | } |
| 44 | |
| 45 | // *********************************************************************** |
| 46 |
nothing calls this directly
no test coverage detected