blob: 97f205358f2e42101ff98558b96f9de877bc24fc (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "stdafx.h"
#include "maplight.h"
#include "hammer.h"
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
IMPLEMENT_MAPCLASS( CMapLight );
CMapClass* CMapLight::CreateMapLight(CHelperInfo *pHelperInfo, CMapEntity *pParent)
{
return new CMapLight;
}
void CMapLight::OnParentKeyChanged(const char* key, const char* value)
{
}
CMapClass *CMapLight::Copy(bool bUpdateDependencies)
{
CMapLight *pNew = new CMapLight;
pNew->CopyFrom( this, bUpdateDependencies );
return pNew;
}
//-----------------------------------------------------------------------------
// Purpose: Never select anything because of this helper.
//-----------------------------------------------------------------------------
CMapClass *CMapLight::PrepareSelection(SelectMode_t eSelectMode)
{
return NULL;
}
|