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.
40 lines
943 B
40 lines
943 B
//============ Copyright (c) Valve Corporation, All rights reserved. ==========
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef DMEMOUTH_H
|
|
#define DMEMOUTH_H
|
|
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
// Valve includes
|
|
#include "datamodel/dmelement.h"
|
|
#include "datamodel/dmattributevar.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Forward declarations
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeDag;
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// DmeEyeball
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeMouth : public CDmElement
|
|
{
|
|
DEFINE_ELEMENT( CDmeMouth, CDmElement );
|
|
|
|
public:
|
|
CDmaVar< int > m_nMouthNumber;
|
|
CDmaString m_sFlexControllerName;
|
|
CDmaString m_sBoneName;
|
|
CDmaVar< Vector > m_vForward;
|
|
};
|
|
|
|
|
|
#endif // DMEMOUTH_H
|