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
35 lines
764 B
//====== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. =====
|
|
//
|
|
// DmeAssembleCommand
|
|
//
|
|
//=============================================================================
|
|
|
|
|
|
#ifndef DMEASSEMBLYCOMMAND_H
|
|
#define DMEASSEMBLYCOMMAND_H
|
|
|
|
|
|
#if defined( _WIN32 )
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
// Valve includes
|
|
#include "datamodel/dmelement.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// DmeAssemblyCommand
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeAssemblyCommand : public CDmElement
|
|
{
|
|
DEFINE_ELEMENT( CDmeAssemblyCommand, CDmElement );
|
|
|
|
public:
|
|
virtual bool Apply( CDmElement * /* pDmElement */ ) { return false; }
|
|
|
|
// No attributes
|
|
};
|
|
|
|
|
|
#endif // DMEASSEMBLYCOMMAND_H
|