paysages3d/src/system/Time.h

20 lines
270 B
C++

#ifndef TIME_H
#define TIME_H
#include "system_global.h"
namespace paysages {
namespace system {
class SYSTEMSHARED_EXPORT Time {
public:
/**
* Get a timestamp in milliseconds.
*/
static unsigned long getRelativeTimeMs();
};
}
}
#endif // TIME_H