summaryrefslogtreecommitdiff
path: root/game/server/tf2/c_obj_armor_upgrade.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/server/tf2/c_obj_armor_upgrade.h')
-rw-r--r--game/server/tf2/c_obj_armor_upgrade.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/game/server/tf2/c_obj_armor_upgrade.h b/game/server/tf2/c_obj_armor_upgrade.h
new file mode 100644
index 0000000..91898d1
--- /dev/null
+++ b/game/server/tf2/c_obj_armor_upgrade.h
@@ -0,0 +1,32 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================//
+
+#ifndef C_OBJ_ARMOR_UPGRADE_H
+#define C_OBJ_ARMOR_UPGRADE_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+
+#include "tf_obj_baseupgrade_shared.h"
+
+
+class C_ArmorUpgrade : public C_BaseObjectUpgrade
+{
+public:
+ DECLARE_CLASS( C_ArmorUpgrade, C_BaseObjectUpgrade );
+ DECLARE_CLIENTCLASS();
+ C_ArmorUpgrade();
+
+ virtual int DrawModel( int flags );
+
+
+private:
+ C_ArmorUpgrade( const C_ArmorUpgrade & ) {}
+};
+
+
+#endif // C_OBJ_ARMOR_UPGRADE_H