Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/util/loading/resource.h @ 7193

Last change on this file since 7193 was 7193, checked in by bensch, 18 years ago

orxonox/trunk: new style for resources (prework/movement)

File size: 471 bytes
Line 
1/*!
2 * @file resource.h
3 * @brief Definition of ...
4*/
5
6#ifndef _RESOURCE_H
7#define _RESOURCE_H
8
9#include "base_object.h"
10#include "multi_type.h"
11
12
13// FORWARD DECLARATION
14
15
16
17//! A class for ...
18class Resource : virtual public BaseObject {
19
20 public:
21  Resource();
22  virtual ~Resource();
23
24  virtual bool load(const char* fileName, const MultiType& param1, const MultiType& param2);
25  virtual bool reload();
26  virtual bool unload();
27
28 private:
29
30};
31
32#endif /* _RESOURCE_H */
Note: See TracBrowser for help on using the repository browser.