This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef DOD_LOCATION_H
#define DOD_LOCATION_H
#ifdef _WIN32
#pragma once
#endif
#include "baseentity.h"
//a location on the map that players can refernce in their say messages
//with the %l escape sequence
class CDODLocation : public CBaseEntity
{
public:
DECLARE_CLASS( CDODLocation, CBaseEntity );
CDODLocation()
{
m_szLocationName[0] = '\0';
}
virtual void Spawn( void );
virtual bool KeyValue( const char *szKeyName, const char *szValue );
inline const char *GetName( void ) { return m_szLocationName; }
private:
char m_szLocationName[64];
private:
CDODLocation( const CDODLocation & );
};
#endif //DOD_LOCATION_H