Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/kill_target.h @ 7461

Last change on this file since 7461 was 7461, checked in by patrick, 18 years ago

orxonox: the mission goal framework is nearly completed

File size: 532 bytes
Line 
1/*!
2 * @file mission_goal.h
3 * @brief Definition of a killtarget mission goal
4*/
5
6#ifndef _KILL_TARGET_H
7#define _KILL_TARGET_H
8
9#include "mission_goal.h"
10
11
12class TiXmlElement;
13
14
15
16//! A class representing a mission goal to kill a specific amount of a specific object type
17class KillTarget : public MissionGoal {
18
19 public:
20  KillTarget(const TiXmlElement* root);
21  virtual ~KillTarget();
22
23  virtual void loadParams(const TiXmlElement* root);
24
25  virtual MissionState checkMissionGoal();
26
27
28 protected:
29
30};
31
32#endif /* _KILL_TARGET_H */
Note: See TracBrowser for help on using the repository browser.