aboutsummaryrefslogtreecommitdiff
path: root/assets/interlocking.html.LyXconv/interlocking.html
diff options
context:
space:
mode:
Diffstat (limited to 'assets/interlocking.html.LyXconv/interlocking.html')
0 files changed, 0 insertions, 0 deletions
ADER #define GETTIME_HEADER #include "irrlichttypes.h" /* Get a millisecond counter value. Precision depends on implementation. Overflows at any value above 10000000. Implementation of this is done in: Normal build: main.cpp Server build: servermain.cpp */ enum TimePrecision { PRECISION_SECONDS, PRECISION_MILLI, PRECISION_MICRO, PRECISION_NANO }; extern u32 getTimeMs(); extern u32 getTime(TimePrecision prec); /* Timestamp stuff */ #include <time.h> #include <string> inline std::string getTimestamp() { time_t t = time(NULL); // This is not really thread-safe but it won't break anything