Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/trackManager/src/network/synchronisable.h @ 3498

Last change on this file since 3498 was 3498, checked in by bensch, 19 years ago

orxonox/branches/trackManager: merged trunk back to tracManager R3440:3497 → 3498
merged with command:
svn merge ../trunk/ trackManager/ -r 3430:HEAD
conflicts resolved in favor of the Trunk

File size: 349 bytes
Line 
1
2#ifndef _SYNCHRONISABLE_H
3#define _SYNCHRONISABLE_H
4
5#include "data_tank.h"
6
7
8class 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 /* _SYNCHRONISABLE_H */
Note: See TracBrowser for help on using the repository browser.