summaryrefslogtreecommitdiff
path: root/movieobjects/movieobjects_interfaces.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /movieobjects/movieobjects_interfaces.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'movieobjects/movieobjects_interfaces.h')
-rw-r--r--movieobjects/movieobjects_interfaces.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/movieobjects/movieobjects_interfaces.h b/movieobjects/movieobjects_interfaces.h
new file mode 100644
index 0000000..1e92b7e
--- /dev/null
+++ b/movieobjects/movieobjects_interfaces.h
@@ -0,0 +1,36 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#ifndef MOVIEOBJECTS_INTERFACE_H
+#define MOVIEOBJECTS_INTERFACE_H
+
+#ifdef _WIN32
+#pragma once
+#endif
+
+
+//-----------------------------------------------------------------------------
+// typedefs that should be in platform.h
+//-----------------------------------------------------------------------------
+typedef unsigned char uchar;
+typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned long ulong;
+
+
+//-----------------------------------------------------------------------------
+// Forward declarations
+//-----------------------------------------------------------------------------
+class IGlobalFlexController;
+
+
+//-----------------------------------------------------------------------------
+// Global interfaces used by the movieobjects library
+//-----------------------------------------------------------------------------
+extern IGlobalFlexController *g_pGlobalFlexController;
+
+
+#endif // MOVIEOBJECTS_INTERFACE_H \ No newline at end of file