source-engine/game/client/swarm/c_asw_level_exploder.h
2023-10-03 17:23:56 +03:00

22 lines
435 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