ddnet/src/game/client/components/race.h
2017-08-31 00:17:16 +02:00

16 lines
478 B
C++

#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