blob: d8d620f633dfadf6ed565a84c95b4b7eb925d14a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef DMEPHONEMEMAPPING_H
#define DMEPHONEMEMAPPING_H
#ifdef _WIN32
#pragma once
#endif
#include "datamodel/dmelement.h"
class CDmePhonemeMapping : public CDmElement
{
DEFINE_ELEMENT( CDmePhonemeMapping, CDmElement );
public:
CDmaString m_Preset; // "preset" // map this item to this preset
CDmaVar< float > m_Weight; // "weight" // using this weight
};
#endif // DMEPHONEMEMAPPING_H
|