Last change
on this file since 2700 was
2036,
checked in by patrick, 20 years ago
|
orxonxo/trunk/src: extended framework: class inheritance, right including (had som bugs), framework not finished yet
|
File size:
323 bytes
|
Line | |
---|
1 | |
---|
2 | #ifndef SYNCHRONISABLE_H |
---|
3 | #define SYNCHRONISABLE_H |
---|
4 | |
---|
5 | #include "data_tank.h" |
---|
6 | |
---|
7 | |
---|
8 | class Synchronisable { |
---|
9 | |
---|
10 | public: |
---|
11 | Synchronisable (); |
---|
12 | ~Synchronisable (); |
---|
13 | |
---|
14 | struct worldEntityState { |
---|
15 | /*Vector position; */ |
---|
16 | /*Vector orientation; */ |
---|
17 | }; |
---|
18 | |
---|
19 | worldEntityState* getState(); |
---|
20 | void setState(worldEntityState*); |
---|
21 | |
---|
22 | }; |
---|
23 | |
---|
24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.