blob: c6683f61f8263e8b2e053dc3948ddd13dcb1d031 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Defines a base class for all helper objects. Helper objects are
// subordinate to their entity parents, and provide services such as
// enhanced presentation and manipulation of keyvalues for their parent
// entity.
//
// Like all children, helpers are transformed with their parent.
//
// $NoKeywords: $
//=============================================================================//
#ifndef MAPHELPER_H
#define MAPHELPER_H
#ifdef _WIN32
#pragma once
#endif
#include "MapClass.h"
class CMapHelper : public CMapClass
{
public:
//
// Serialization.
//
virtual bool ShouldSerialize(void) { return(false); }
virtual CMapClass *PrepareSelection(SelectMode_t eSelectMode);
};
#endif // MAPHELPER_H
|