diff options
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 |