mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-07 09:43:40 +08:00
22 lines
456 B
C++
22 lines
456 B
C++
#ifndef _INCLUDED_C_ASW_LEVEL_EXPLODER_H
|
|
#define _INCLUDED_C_ASW_LEVEL_EXPLODER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class C_ASW_Level_Exploder : public C_BaseEntity
|
|
{
|
|
DECLARE_CLASS( C_ASW_Level_Exploder, C_BaseEntity );
|
|
|
|
public:
|
|
C_ASW_Level_Exploder();
|
|
|
|
virtual void ClientThink();
|
|
|
|
static C_ASW_Level_Exploder *CreateClientsideLevelExploder();
|
|
|
|
bool m_bFlashed;
|
|
float m_fDieTime;
|
|
};
|
|
|
|
#endif //_INCLUDED_C_ASW_LEVEL_EXPLODER_H
|