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.
23 lines
425 B
23 lines
425 B
1 year ago
|
#include "cbase.h"
|
||
|
#include "asw_holdout_spawner.h"
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
LINK_ENTITY_TO_CLASS( asw_holdout_spawner, CASW_Holdout_Spawner );
|
||
|
|
||
|
BEGIN_DATADESC( CASW_Holdout_Spawner )
|
||
|
END_DATADESC()
|
||
|
|
||
|
CASW_Holdout_Spawner::CASW_Holdout_Spawner()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
CASW_Holdout_Spawner::~CASW_Holdout_Spawner()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void CASW_Holdout_Spawner::Spawn()
|
||
|
{
|
||
|
BaseClass::Spawn();
|
||
|
}
|