#ifndef GAME_CLIENT_COMPONENTS_RACE_H #define GAME_CLIENT_COMPONENTS_RACE_H #include class CRaceHelper { public: // these functions return the time in milliseconds, time 0 is invalid static int TimeFromSecondsStr(const char *pStr); // x.xxx static int TimeFromStr(const char *pStr); // x minute(s) x.xx second(s) static int TimeFromFinishMessage(const char *pStr, char *pNameBuf, int NameBufSize); // xxx finished in: x minute(s) x.xx second(s) }; #endif