Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/mission_goal.h @ 7391

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

orxonox: working on mission goals and mission manager

File size: 335 bytes
Line 
1/*!
2 * @file mission_goal.h
3 * @brief General definition of mission goals
4*/
5
6#ifndef _MISSION_GOAL_H
7#define _MISSION_GOAL_H
8
9#include "base_object.h"
10
11
12
13
14//! A class representing a mission goal
15class MissionGoal : public BaseObject {
16
17 public:
18  MissionGoal();
19  virtual ~MissionGoal();
20
21
22 private:
23
24};
25
26#endif /* _MISSION_GOAL_H */
Note: See TracBrowser for help on using the repository browser.