001047a0739b9997d7f1552f93608ad099bef7dd
[laserbrain_demo] / src / blob_exhibit.h
1 #ifndef BLOB_EXHIBIT_H_
2 #define BLOB_EXHIBIT_H_
3
4 #include "exhibit.h"
5
6 struct BlobPriv;
7
8 class BlobExhibit : public Exhibit {
9 private:
10         BlobPriv *priv;
11
12 public:
13         BlobExhibit();
14         ~BlobExhibit();
15
16         bool init();
17         void destroy();
18
19         void update(float dt);
20         void draw() const;
21 };
22
23 #endif  // BLOB_EXHIBIT_H_