You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
473 B
24 lines
473 B
1 year ago
|
#include "cbase.h"
|
||
|
#include "asw_objective_dummy.h"
|
||
|
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
LINK_ENTITY_TO_CLASS( asw_objective_dummy, CASW_Objective_Dummy );
|
||
|
|
||
|
BEGIN_DATADESC( CASW_Objective_Dummy )
|
||
|
|
||
|
END_DATADESC()
|
||
|
|
||
|
|
||
|
// dummy objectives are complete automatically
|
||
|
CASW_Objective_Dummy::CASW_Objective_Dummy() : CASW_Objective()
|
||
|
{
|
||
|
m_bDummy = true;
|
||
|
m_bComplete = true;
|
||
|
}
|
||
|
|
||
|
|
||
|
CASW_Objective_Dummy::~CASW_Objective_Dummy()
|
||
|
{
|
||
|
}
|