blob: ad687081ad61fe2ede998e22b0d0ee61bb2142a5 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef HELPERFACTORY_H
#define HELPERFACTORY_H
#pragma once
class CHelperInfo;
class CMapClass;
class CMapEntity;
class CHelperFactory
{
public:
static CMapClass *CreateHelper(CHelperInfo *pHelperInfo, CMapEntity *pParent);
};
#endif // HELPERFACTORY_H
|