summaryrefslogtreecommitdiff
path: root/common/replay/iserverengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/replay/iserverengine.h')
-rw-r--r--common/replay/iserverengine.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/common/replay/iserverengine.h b/common/replay/iserverengine.h
new file mode 100644
index 0000000..f4cd329
--- /dev/null
+++ b/common/replay/iserverengine.h
@@ -0,0 +1,27 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+//=======================================================================================//
+
+#ifndef ISERVERENGINE_H
+#define ISERVERENGINE_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+//----------------------------------------------------------------------------------------
+
+#include "interface.h"
+
+//----------------------------------------------------------------------------------------
+
+class IReplayServerEngine : public IBaseInterface
+{
+public:
+ virtual void EndReplayRecordingSession() = 0;
+ virtual bool IsReplayRecording() = 0;
+ virtual bool IsReplay() = 0;
+};
+
+//----------------------------------------------------------------------------------------
+
+#endif // ISERVERENGINE_H \ No newline at end of file