#ifndef _SYNCHRONISABLE_H #define _SYNCHRONISABLE_H #include "data_tank.h" class Synchronisable { public: Synchronisable (); ~Synchronisable (); struct worldEntityState { /*Vector position; */ /*Vector orientation; */ }; worldEntityState* getState(); void setState(worldEntityState*); }; #endif /* _SYNCHRONISABLE_H */