| 508 | // *********************************************************************** |
| 509 | |
| 510 | i32 Size(lua_State* L) { |
| 511 | UserData* pUserData = (UserData*)luaL_checkudata(L, 1, "UserData"); |
| 512 | lua_pushinteger(L, pUserData->width * pUserData->height); |
| 513 | return 1; |
| 514 | } |
| 515 | |
| 516 | // *********************************************************************** |
| 517 |
nothing calls this directly
no outgoing calls
no test coverage detected