| 492 | // *********************************************************************** |
| 493 | |
| 494 | i32 Width(lua_State* L) { |
| 495 | UserData* pUserData = (UserData*)luaL_checkudata(L, 1, "UserData"); |
| 496 | lua_pushinteger(L, pUserData->width); |
| 497 | return 1; |
| 498 | } |
| 499 | |
| 500 | // *********************************************************************** |
| 501 |
nothing calls this directly
no outgoing calls
no test coverage detected