mirror of
https://github.com/celisej567/source-engine.git
synced 2026-09-27 16:15:14 +03:00
upload "kind" alien swarm
This commit is contained in:
28
game/client/swarm/c_asw_objective_kill_queen.cpp
Normal file
28
game/client/swarm/c_asw_objective_kill_queen.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#include "cbase.h"
|
||||
#include "C_ASW_Objective_Kill_Queen.h"
|
||||
#include "asw_vgui_queen_health.h"
|
||||
#include "c_asw_queen.h"
|
||||
#include "iclientmode.h"
|
||||
|
||||
// memdbgon must be the last include file in a .cpp file!!!
|
||||
#include "tier0/memdbgon.h"
|
||||
|
||||
IMPLEMENT_CLIENTCLASS_DT(C_ASW_Objective_Kill_Queen, DT_ASW_Objective_Kill_Queen, CASW_Objective_Kill_Queen)
|
||||
RecvPropEHandle ( RECVINFO( m_hQueen ) ),
|
||||
END_RECV_TABLE()
|
||||
|
||||
|
||||
C_ASW_Objective_Kill_Queen::C_ASW_Objective_Kill_Queen()
|
||||
{
|
||||
m_bLaunchedPanel = false;
|
||||
}
|
||||
|
||||
C_ASW_Objective_Kill_Queen::~C_ASW_Objective_Kill_Queen()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void C_ASW_Objective_Kill_Queen::OnDataChanged( DataUpdateType_t updateType )
|
||||
{
|
||||
BaseClass::OnDataChanged(updateType);
|
||||
}
|
||||
Reference in New Issue
Block a user