mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-06 23:46:43 +00:00
27 lines
423 B
C
27 lines
423 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef HL1_ITEMS_H
|
||
|
#define HL1_ITEMS_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include "items.h"
|
||
|
|
||
|
class CHL1Item : public CItem
|
||
|
{
|
||
|
public:
|
||
|
DECLARE_CLASS( CHL1Item, CItem );
|
||
|
|
||
|
void Spawn( void );
|
||
|
void Activate( void );
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // HL1_ITEMS_H
|