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.
42 lines
974 B
42 lines
974 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Dme representation of QC: $sequence
|
||
|
//
|
||
|
//===========================================================================//
|
||
|
|
||
|
#ifndef DMESEQUENCE_H
|
||
|
#define DMESEQUENCE_H
|
||
|
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include "datamodel/dmattributevar.h"
|
||
|
#include "datamodel/dmelement.h"
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Forward declarations
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CDmeDag;
|
||
|
class CDmeAnimationList;
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Animation data
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CDmeSequence : public CDmElement
|
||
|
{
|
||
|
DEFINE_ELEMENT( CDmeSequence, CDmElement );
|
||
|
|
||
|
public:
|
||
|
CDmaElement< CDmeDag > m_Skeleton;
|
||
|
CDmaElement< CDmeAnimationList > m_AnimationList;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // DMESEQUENCE_H
|