mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
3be8a592e5
Purely automatic change. In case of conflict with this change, apply the other change and rerun the formatting to restore it: $ python scripts/fix_style.py
30 lines
766 B
C++
30 lines
766 B
C++
#ifndef GAME_SERVER_TEEINFO_H
|
|
#define GAME_SERVER_TEEINFO_H
|
|
|
|
class CTeeInfo
|
|
{
|
|
public:
|
|
constexpr static const float DARKEST_LGT_7 = 61 / 255.0f;
|
|
|
|
char m_SkinName[64] = {'\0'};
|
|
int m_UseCustomColor = 0;
|
|
int m_ColorBody = 0;
|
|
int m_ColorFeet = 0;
|
|
|
|
// 0.7
|
|
char m_apSkinPartNames[6][24] = {"", "", "", "", "", ""};
|
|
bool m_aUseCustomColors[6] = {false, false, false, false, false, false};
|
|
int m_aSkinPartColors[6] = {0, 0, 0, 0, 0, 0};
|
|
|
|
CTeeInfo() = default;
|
|
|
|
CTeeInfo(const char *pSkinName, int UseCustomColor, int ColorBody, int ColorFeet);
|
|
|
|
// This constructor will assume all arrays are of length 6
|
|
CTeeInfo(const char *pSkinPartNames[6], int *pUseCustomColors, int *pSkinPartColors);
|
|
|
|
void FromSixup();
|
|
void ToSixup();
|
|
};
|
|
#endif //GAME_SERVER_TEEINFO_H
|