| 20 | static const LOG_COLOR LOG_COLOR_GHOST{165, 153, 153}; |
| 21 | |
| 22 | void CGhost::SetGhostSkinData(CGhostSkin *pSkin, const char *pSkinName, int UseCustomColor, int ColorBody, int ColorFeet) |
| 23 | { |
| 24 | StrToInts(pSkin->m_aSkin, std::size(pSkin->m_aSkin), pSkinName); |
| 25 | pSkin->m_UseCustomColor = UseCustomColor; |
| 26 | pSkin->m_ColorBody = ColorBody; |
| 27 | pSkin->m_ColorFeet = ColorFeet; |
| 28 | } |
| 29 | |
| 30 | void CGhost::GetGhostCharacter(CGhostCharacter *pGhostChar, const CNetObj_Character *pChar, const CNetObj_DDNetCharacter *pDDnetChar) |
| 31 | { |
nothing calls this directly
no test coverage detected