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
903 B
38 lines
903 B
//====== Copyright © 1996-2008, Valve Corporation, All rights reserved. =====//
|
|
//
|
|
// Dme representation of QC: $definebone
|
|
//
|
|
//===========================================================================//
|
|
|
|
#ifndef DMEDEFINEBONE_H
|
|
#define DMEDEFINEBONE_H
|
|
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#include "datamodel/dmattributevar.h"
|
|
#include "datamodel/dmelement.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Dme representation of QC: $definebone
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeDefineBone : public CDmElement
|
|
{
|
|
DEFINE_ELEMENT( CDmeDefineBone, CDmElement );
|
|
|
|
public:
|
|
CDmaString m_Parent;
|
|
CDmaVar< Vector > m_Translation;
|
|
CDmaVar< QAngle > m_Rotation;
|
|
CDmaVar< Vector > m_RealignTranslation;
|
|
CDmaVar< QAngle > m_RealignRotation;
|
|
CDmaString m_sContentsDescription;
|
|
|
|
};
|
|
|
|
|
|
#endif // DMEDEFINEBONE_H
|