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.
19 lines
440 B
19 lines
440 B
#ifndef _INCLUDED_ASW_OBJECTIVE_DUMMY_H |
|
#define _INCLUDED_ASW_OBJECTIVE_DUMMY_H |
|
#pragma once |
|
|
|
#include "asw_objective.h" |
|
|
|
// A dummy objective used to show some text on the objectives screen |
|
|
|
class CASW_Objective_Dummy : public CASW_Objective |
|
{ |
|
public: |
|
DECLARE_CLASS( CASW_Objective_Dummy, CASW_Objective ); |
|
DECLARE_DATADESC(); |
|
|
|
CASW_Objective_Dummy(); |
|
virtual ~CASW_Objective_Dummy(); |
|
}; |
|
|
|
#endif /* _INCLUDED_ASW_OBJECTIVE_DUMMY_H */ |