You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
688 B
35 lines
688 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#ifndef ACTANIMATING_H |
|
#define ACTANIMATING_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
#include "baseanimating.h" |
|
|
|
class CActAnimating : public CBaseAnimating |
|
{ |
|
public: |
|
DECLARE_CLASS( CActAnimating, CBaseAnimating ); |
|
|
|
void SetActivity( Activity act ); |
|
inline Activity GetActivity( void ) { return m_Activity; } |
|
|
|
virtual int ObjectCaps( void ) { return BaseClass::ObjectCaps() & ~FCAP_ACROSS_TRANSITION; } |
|
|
|
DECLARE_DATADESC(); |
|
|
|
private: |
|
Activity m_Activity; |
|
}; |
|
|
|
|
|
|
|
#endif // ACTANIMATING_H
|
|
|