You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
809 B
37 lines
809 B
5 years ago
|
//========= 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
|