summaryrefslogtreecommitdiff
path: root/common/replay/ireplaycamera.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/replay/ireplaycamera.h')
-rw-r--r--common/replay/ireplaycamera.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/common/replay/ireplaycamera.h b/common/replay/ireplaycamera.h
new file mode 100644
index 0000000..24ccb91
--- /dev/null
+++ b/common/replay/ireplaycamera.h
@@ -0,0 +1,25 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+//----------------------------------------------------------------------------------------
+
+#ifndef IREPLAYCAMERA_H
+#define IREPLAYCAMERA_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+//----------------------------------------------------------------------------------------
+
+#include "interface.h"
+
+//----------------------------------------------------------------------------------------
+
+abstract_class IReplayCamera : public IBaseInterface
+{
+public:
+ virtual void ClearOverrideView() = 0;
+};
+
+//----------------------------------------------------------------------------------------
+
+#endif // IREPLAYCAMERA_H