upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+24
View File
@@ -0,0 +1,24 @@
#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()
{
}