ddnet/src/engine/shared/video.cpp

15 lines
268 B
C++
Raw Normal View History

2016-08-31 12:09:06 +00:00
#if defined(CONF_VIDEORECORDER)
#include <engine/shared/config.h>
2016-08-31 12:09:06 +00:00
#include "video.h"
IVideo *IVideo::ms_pCurrentVideo = 0;
2016-08-31 12:09:06 +00:00
2021-06-23 05:05:49 +00:00
int64_t IVideo::ms_Time = 0;
2016-08-31 12:09:06 +00:00
float IVideo::ms_LocalTime = 0;
2021-06-23 05:05:49 +00:00
int64_t IVideo::ms_LocalStartTime = 0;
int64_t IVideo::ms_TickTime = 0;
2016-08-31 12:09:06 +00:00
#endif