Team Fortress 2 Source Code as on 22/4/2020
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

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. //
  4. //
  5. //=============================================================================
  6. #ifndef C_MERASMUS_DANCER_H
  7. #define C_MERASMUS_DANCER_H
  8. #include "c_baseanimating.h"
  9. //--------------------------------------------------------------------------------------------------------
  10. class C_MerasmusDancer : public C_BaseAnimating
  11. {
  12. public:
  13. DECLARE_CLASS( C_MerasmusDancer, C_BaseAnimating );
  14. DECLARE_CLIENTCLASS();
  15. C_MerasmusDancer();
  16. virtual ~C_MerasmusDancer();
  17. private:
  18. C_MerasmusDancer( const C_MerasmusDancer & ); // not defined, not accessible
  19. };
  20. #endif // C_MERASMUS_DANCER_H