source: proiecte/SIMEO/Simeo/src/SimeoEngine/XProvider.h @ 167

Last change on this file since 167 was 167, checked in by (none), 14 years ago

Simeo: added final project and also older proof of concept code.

We used Git for version control, so look at the Git repo
in SIMEO/Simeo/ for more info.

File size: 392 bytes
Line 
1#ifndef XPROVIDER_H
2#define XPROVIDER_H
3
4#include "Channel.h"
5#include "constants.h"
6
7#include "btBulletDynamicsCommon.h"
8
9class XProvider
10{
11protected:
12        Channel *m_chan;
13
14
15
16public:
17        XProvider(Channel *chan);
18        ~XProvider();
19
20        Channel *getChannel();
21
22        virtual void updatePre() { };
23        virtual void updatePost() { };
24        virtual void packData(channelData *data, int id) { };
25};
26
27#endif //XPROVIDER_H
Note: See TracBrowser for help on using the repository browser.