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
+33
View File
@@ -0,0 +1,33 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef TF_OBJ_ARMOR_UPGRADE_H
#define TF_OBJ_ARMOR_UPGRADE_H
#ifdef _WIN32
#pragma once
#endif
#include "tf_obj_baseupgrade_shared.h"
// This class shows a temporary model until you get to an object it can upgrade.
// Then it draws a shell over the model you want to upgrade.
class CArmorUpgrade : public CBaseObjectUpgrade
{
public:
DECLARE_CLASS( CArmorUpgrade, CBaseObjectUpgrade );
DECLARE_SERVERCLASS();
CArmorUpgrade();
virtual void Spawn();
};
#endif // TF_OBJ_ARMOR_UPGRADE_H