added a non-interactive blobs exhibit
[laserbrain_demo] / src / blob_exhibit.h
diff --git a/src/blob_exhibit.h b/src/blob_exhibit.h
new file mode 100644 (file)
index 0000000..001047a
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef BLOB_EXHIBIT_H_
+#define BLOB_EXHIBIT_H_
+
+#include "exhibit.h"
+
+struct BlobPriv;
+
+class BlobExhibit : public Exhibit {
+private:
+       BlobPriv *priv;
+
+public:
+       BlobExhibit();
+       ~BlobExhibit();
+
+       bool init();
+       void destroy();
+
+       void update(float dt);
+       void draw() const;
+};
+
+#endif // BLOB_EXHIBIT_H_