diff options
Diffstat (limited to 'common/replay/ireplaysessionrecorder.h')
| -rw-r--r-- | common/replay/ireplaysessionrecorder.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/common/replay/ireplaysessionrecorder.h b/common/replay/ireplaysessionrecorder.h new file mode 100644 index 0000000..6c5f905 --- /dev/null +++ b/common/replay/ireplaysessionrecorder.h @@ -0,0 +1,27 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +//=======================================================================================// + +#ifndef IREPLAYSESSIONRECORDER_H +#define IREPLAYSESSIONRECORDER_H +#ifdef _WIN32 +#pragma once +#endif + +//---------------------------------------------------------------------------------------- + +#include "interface.h" + +//---------------------------------------------------------------------------------------- + +class IReplaySessionRecorder : public IBaseInterface +{ +public: + virtual void StartRecording() = 0; + virtual void StopRecording( bool bAborting ) = 0; + virtual void SetCurrentRecordingStartTick( int nStartTick ) = 0; +}; + +//---------------------------------------------------------------------------------------- + +#endif // IREPLAYSESSIONRECORDER_H
\ No newline at end of file |