Counter Strike : Global Offensive Source Code
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
764 B

  1. //====== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. =====
  2. //
  3. // DmeAssembleCommand
  4. //
  5. //=============================================================================
  6. #ifndef DMEASSEMBLYCOMMAND_H
  7. #define DMEASSEMBLYCOMMAND_H
  8. #if defined( _WIN32 )
  9. #pragma once
  10. #endif
  11. // Valve includes
  12. #include "datamodel/dmelement.h"
  13. //-----------------------------------------------------------------------------
  14. // DmeAssemblyCommand
  15. //-----------------------------------------------------------------------------
  16. class CDmeAssemblyCommand : public CDmElement
  17. {
  18. DEFINE_ELEMENT( CDmeAssemblyCommand, CDmElement );
  19. public:
  20. virtual bool Apply( CDmElement * /* pDmElement */ ) { return false; }
  21. // No attributes
  22. };
  23. #endif // DMEASSEMBLYCOMMAND_H