| 172 | return 1; |
| 173 | } |
| 174 | static int Meta_ToString(lua_State* L)LNOEXCEPT |
| 175 | { |
| 176 | fcyColor* p = static_cast<fcyColor*>(luaL_checkudata(L, 1, TYPENAME_COLOR)); |
| 177 | lua_pushfstring(L, "lstg.Color(%d,%d,%d,%d)", p->a, p->r, p->g, p->b); |
| 178 | return 1; |
| 179 | } |
| 180 | }; |
| 181 | |
| 182 | luaL_Reg tMethods[] = |
nothing calls this directly
no outgoing calls
no test coverage detected