ddnet/src/game/client/components/race.h

16 lines
478 B
C
Raw Normal View History

#ifndef GAME_CLIENT_COMPONENTS_RACE_H
#define GAME_CLIENT_COMPONENTS_RACE_H
#include <base/system.h>
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