blob: 83ff3644aeb17e7bee6e6e0967bb6d4431fbd2a0 (
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
28
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ACTORPROPERTIES_H
#define ACTORPROPERTIES_H
#ifdef _WIN32
#pragma once
#endif
#include "basedialogparams.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
struct CActorParams : public CBaseDialogParams
{
// i/o actor name
char m_szName[ 256 ];
};
// Display/create actor info
int ActorProperties( CActorParams *params );
#endif // ACTORPROPERTIES_H
|