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.
41 lines
1.1 KiB
41 lines
1.1 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: Base class for object upgrading objects |
|
// |
|
//=============================================================================// |
|
|
|
#ifndef TF_OBJ_BASEUPGRADE_H |
|
#define TF_OBJ_BASEUPGRADE_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
#include "baseobject_shared.h" |
|
#include "takedamageinfo.h" |
|
|
|
#if defined( CLIENT_DLL ) |
|
#define CBaseObjectUpgrade C_BaseObjectUpgrade |
|
#endif |
|
|
|
// ------------------------------------------------------------------------ // |
|
// Base class for object upgrading objects |
|
// ------------------------------------------------------------------------ // |
|
class CBaseObjectUpgrade : public CBaseObject |
|
{ |
|
DECLARE_CLASS( CBaseObjectUpgrade, CBaseObject ); |
|
|
|
public: |
|
DECLARE_NETWORKCLASS(); |
|
|
|
CBaseObjectUpgrade(); |
|
|
|
virtual void Spawn( void ); |
|
virtual bool IsAnUpgrade( void ) { return true; } |
|
virtual int OnTakeDamage( const CTakeDamageInfo &info ); |
|
|
|
private: |
|
CBaseObjectUpgrade( const CBaseObjectUpgrade & ); // not defined, not accessible |
|
}; |
|
|
|
#endif // TF_OBJ_BASEUPGRADE_H
|
|
|