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.
41 lines
1.1 KiB
41 lines
1.1 KiB
//===== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. ====
|
|
//
|
|
// List of DmePoseParamaters
|
|
//
|
|
//===========================================================================
|
|
|
|
#ifndef DMEPOSEPARAMETERLIST_H
|
|
#define DMEPOSEPARAMETERLIST_H
|
|
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
// Valve includes
|
|
#include "datamodel/dmattributevar.h"
|
|
#include "mdlobjects/dmemdllist.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Forward Declarations
|
|
//-----------------------------------------------------------------------------
|
|
class CDmePoseParameter;
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// A class representing a list of LODs
|
|
//-----------------------------------------------------------------------------
|
|
class CDmePoseParameterList : public CDmElement
|
|
{
|
|
DEFINE_ELEMENT( CDmePoseParameterList, CDmElement );
|
|
|
|
public:
|
|
virtual CDmAttribute *GetListAttr() { return m_ePoseParameterList.GetAttribute(); }
|
|
|
|
CDmaElementArray< CDmePoseParameter > m_ePoseParameterList;
|
|
};
|
|
|
|
|
|
#endif // DMEPOSEPARAMETERLIST_H
|