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 /utils/hlfaceposer/globaleventproperties.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/hlfaceposer/globaleventproperties.h')
| -rw-r--r-- | utils/hlfaceposer/globaleventproperties.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/utils/hlfaceposer/globaleventproperties.h b/utils/hlfaceposer/globaleventproperties.h new file mode 100644 index 0000000..c74160d --- /dev/null +++ b/utils/hlfaceposer/globaleventproperties.h @@ -0,0 +1,48 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef GLOBALEVENTPROPERTIES_H +#define GLOBALEVENTPROPERTIES_H +#ifdef _WIN32 +#pragma once +#endif + +class CChoreoScene; + +#include "basedialogparams.h" + +//----------------------------------------------------------------------------- +// Purpose: +//----------------------------------------------------------------------------- +struct CGlobalEventParams : public CBaseDialogParams +{ + int m_nType; + + // GlobalEvent descriptive name + char m_szName[ 256 ]; + + // Pause start time + float m_flStartTime; + + // Pause Scene or Cancel Scene ( pause/cancel ) + char m_szAction[ 256 ]; + + bool m_bAutomate; + + char m_szType[ 256 ]; + + // Idle/paused time before action is taken + float m_flWaitTime; + + // For loop events + int m_nLoopCount; + float m_flLoopTime; +}; + +int GlobalEventProperties( CGlobalEventParams *params ); + +#endif // GLOBALEVENTPROPERTIES_H |