Last change
on this file since 3677 was
2058,
checked in by chris, 20 years ago
|
orxonox/branches/chris: Trunk remerged into my branch started on SDL reconfiguration
|
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.