diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /public/posedebugger.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'public/posedebugger.h')
| -rw-r--r-- | public/posedebugger.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/public/posedebugger.h b/public/posedebugger.h new file mode 100644 index 0000000..f8b8153 --- /dev/null +++ b/public/posedebugger.h @@ -0,0 +1,38 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// + +#ifndef POSEDEBUGGER_H +#define POSEDEBUGGER_H +#ifdef _WIN32 +#pragma once +#endif + +class IClientNetworkable; + +abstract_class IPoseDebugger +{ +public: + virtual void StartBlending( IClientNetworkable *pEntity, const CStudioHdr *pStudioHdr ) = 0; + + virtual void AccumulatePose( + const CStudioHdr *pStudioHdr, + CIKContext *pIKContext, + Vector pos[], + Quaternion q[], + int sequence, + float cycle, + const float poseParameter[], + int boneMask, + float flWeight, + float flTime + ) = 0; +}; + +extern IPoseDebugger *g_pPoseDebugger; + +#endif // #ifndef POSEDEBUGGER_H |