summaryrefslogtreecommitdiff
path: root/public/materialsystem/imaterialproxy.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 /public/materialsystem/imaterialproxy.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'public/materialsystem/imaterialproxy.h')
-rw-r--r--public/materialsystem/imaterialproxy.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/public/materialsystem/imaterialproxy.h b/public/materialsystem/imaterialproxy.h
new file mode 100644
index 0000000..52c49be
--- /dev/null
+++ b/public/materialsystem/imaterialproxy.h
@@ -0,0 +1,32 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+
+#ifndef IMATERIALPROXY_H
+#define IMATERIALPROXY_H
+#pragma once
+
+#include "interface.h"
+
+#define IMATERIAL_PROXY_INTERFACE_VERSION "_IMaterialProxy003"
+
+class IMaterial;
+class KeyValues;
+
+abstract_class IMaterialProxy
+{
+public:
+ virtual bool Init( IMaterial* pMaterial, KeyValues *pKeyValues ) = 0;
+ virtual void OnBind( void * ) = 0;
+ virtual void Release() = 0;
+ virtual IMaterial * GetMaterial() = 0;
+
+protected:
+ // no one should call this directly
+ virtual ~IMaterialProxy() {}
+};
+
+#endif // IMATERIALPROXY_H