aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/engine/IStaticPropMgr.h
diff options
context:
space:
mode:
authorJoe Ludwig <[email protected]>2013-09-03 16:02:10 -0700
committerJoe Ludwig <[email protected]>2013-09-03 16:02:10 -0700
commit1524321396a91ef9fa1f19b4873e53e2c5d9e50a (patch)
tree0a325cd0214ebd656ec414dd0d7597d2c8b883f9 /mp/src/public/engine/IStaticPropMgr.h
parentGeneral: (diff)
downloadsource-sdk-2013-1524321396a91ef9fa1f19b4873e53e2c5d9e50a.tar.xz
source-sdk-2013-1524321396a91ef9fa1f19b4873e53e2c5d9e50a.zip
* Fixed Source Mod back-compatability by reordering methods in a couple interfaces.
* Added missing singleplayer OSX libs * Updated vpc and libs.
Diffstat (limited to 'mp/src/public/engine/IStaticPropMgr.h')
-rw-r--r--mp/src/public/engine/IStaticPropMgr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mp/src/public/engine/IStaticPropMgr.h b/mp/src/public/engine/IStaticPropMgr.h
index ca06f8ff..b331fdb2 100644
--- a/mp/src/public/engine/IStaticPropMgr.h
+++ b/mp/src/public/engine/IStaticPropMgr.h
@@ -63,8 +63,6 @@ public:
// Adds decals to static props, returns point of decal in trace_t
virtual void AddDecalToStaticProp( const Vector& rayStart, const Vector& rayEnd,
int staticPropIndex, int decalIndex, bool doTrace, trace_t& tr ) = 0;
- virtual void AddColorDecalToStaticProp( Vector const& rayStart, Vector const& rayEnd,
- int staticPropIndex, int decalIndex, bool doTrace, trace_t& tr, bool bUseColor, Color cColor ) = 0;
// Adds/removes shadows from static props
virtual void AddShadowToStaticProp( unsigned short shadowHandle, IClientRenderable* pRenderable ) = 0;
virtual void RemoveAllShadowsFromStaticProp( IClientRenderable* pRenderable ) = 0;
@@ -81,6 +79,8 @@ public:
//===================================================================
virtual void DrawStaticProps( IClientRenderable **pProps, int count, bool bShadowDepth, bool drawVCollideWireframe ) = 0;
+ virtual void AddColorDecalToStaticProp( Vector const& rayStart, Vector const& rayEnd,
+ int staticPropIndex, int decalIndex, bool doTrace, trace_t& tr, bool bUseColor, Color cColor ) = 0;
};
class IStaticPropMgrServer : public IStaticPropMgr