mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
36
hammer/MapHelper.h
Normal file
36
hammer/MapHelper.h
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user