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.

38 lines
836 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef DMEMDLPANEL_H
  7. #define DMEMDLPANEL_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "matsys_controls/mdlpanel.h"
  12. class CDmeMDLMakefile;
  13. //-----------------------------------------------------------------------------
  14. // MDL Viewer Panel (hooked into DMEPanel)
  15. //-----------------------------------------------------------------------------
  16. class CDmeMDLPanel : public CMDLPanel
  17. {
  18. DECLARE_CLASS_SIMPLE( CDmeMDLPanel, CMDLPanel );
  19. public:
  20. // constructor, destructor
  21. CDmeMDLPanel( vgui::Panel *pParent, const char *pName );
  22. virtual ~CDmeMDLPanel();
  23. // DMEPanel..
  24. void SetDmeElement( CDmeMDLMakefile *pMDLMakefile );
  25. };
  26. #endif // DMEMDLPANEL_H