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.
26 lines
673 B
26 lines
673 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// |
|
// |
|
//============================================================================= |
|
#ifndef C_MERASMUS_DANCER_H |
|
#define C_MERASMUS_DANCER_H |
|
|
|
#include "c_baseanimating.h" |
|
|
|
//-------------------------------------------------------------------------------------------------------- |
|
|
|
class C_MerasmusDancer : public C_BaseAnimating |
|
{ |
|
public: |
|
DECLARE_CLASS( C_MerasmusDancer, C_BaseAnimating ); |
|
DECLARE_CLIENTCLASS(); |
|
|
|
C_MerasmusDancer(); |
|
virtual ~C_MerasmusDancer(); |
|
|
|
private: |
|
C_MerasmusDancer( const C_MerasmusDancer & ); // not defined, not accessible |
|
}; |
|
|
|
#endif // C_MERASMUS_DANCER_H
|
|
|