blob: 11427972034917d7a1e39448e280d9828592c478 (
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
25
26
27
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef EXPRESSIONPROPERTIES_H
#define EXPRESSIONPROPERTIES_H
#ifdef _WIN32
#pragma once
#endif
#include "basedialogparams.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
struct CExpressionParams : public CBaseDialogParams
{
char m_szName[ 256 ];
char m_szDescription[ 256 ];
};
int ExpressionProperties( CExpressionParams *params );
#endif // EXPRESSIONPROPERTIES_H
|