| 500 | // *********************************************************************** |
| 501 | |
| 502 | i32 Height(lua_State* L) { |
| 503 | UserData* pUserData = (UserData*)luaL_checkudata(L, 1, "UserData"); |
| 504 | lua_pushinteger(L, pUserData->height); |
| 505 | return 1; |
| 506 | } |
| 507 | |
| 508 | // *********************************************************************** |
| 509 |
nothing calls this directly
no outgoing calls
no test coverage detected