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
526 B
24 lines
526 B
#ifndef _INCLUDED_ASW_OBJECTIVE_SURVIVE_H |
|
#define _INCLUDED_ASW_OBJECTIVE_SURVIVE_H |
|
#pragma once |
|
|
|
#include "asw_objective.h" |
|
|
|
// An objective that fails if any marines die |
|
|
|
class CBaseTrigger; |
|
|
|
class CASW_Objective_Survive : public CASW_Objective |
|
{ |
|
public: |
|
DECLARE_CLASS( CASW_Objective_Survive, CASW_Objective ); |
|
DECLARE_DATADESC(); |
|
|
|
CASW_Objective_Survive(); |
|
virtual ~CASW_Objective_Survive(); |
|
virtual void Spawn(); |
|
|
|
virtual void MarineKilled(CASW_Marine* pMarine); |
|
}; |
|
|
|
#endif /* _INCLUDED_ASW_OBJECTIVE_SURVIVE_H */ |