Last change
on this file since 336 was
270,
checked in by rgrieder, 17 years ago
|
- added old version of class hierarchy in order to make things work (is not actually needed, but will be later anyway)
- added the hud wrapper and the media files required
|
File size:
376 bytes
|
Line | |
---|
1 | #ifndef _Test3_H__ |
---|
2 | #define _Test3_H__ |
---|
3 | |
---|
4 | #include "BaseObject.h" |
---|
5 | |
---|
6 | namespace orxonox |
---|
7 | { |
---|
8 | class Test1; |
---|
9 | class Test2; |
---|
10 | |
---|
11 | class Test3 : public BaseObject |
---|
12 | { |
---|
13 | public: |
---|
14 | Test3(); |
---|
15 | virtual ~Test3(); |
---|
16 | |
---|
17 | bool usefullClassesIsATest(Test1* test1); |
---|
18 | bool usefullClassesIsATest(Test2* test2); |
---|
19 | }; |
---|
20 | } |
---|
21 | |
---|
22 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.