-------------------------------------------------------------------------------------------------
| 978 | |
| 979 | //------------------------------------------------------------------------------------------------- |
| 980 | int CScriptObjectUI::GetBackground(IFunctionHandler *pH) |
| 981 | { |
| 982 | CHECK_SCRIPT_FUNCTION_PARAMCOUNT(m_pScriptSystem, "UI", GetBackground, 0); |
| 983 | |
| 984 | USER_DATA pUserData = m_pScriptSystem->CreateUserData((int)m_pUISystem->GetBackground(), USER_DATA_TEXTURE); |
| 985 | |
| 986 | return pH->EndFunction(pUserData); |
| 987 | } |
| 988 | |
| 989 | //------------------------------------------------------------------------------------------------- |
| 990 | int CScriptObjectUI::SetBackgroundColor(IFunctionHandler *pH) |
nothing calls this directly
no test coverage detected