fixed crash when glDebugCallbackARB is available but glDebugCallback isn't
[laserbrain_demo] / src / mech_exhibit.h
1 #ifndef MECH_EXHIBIT_H_
2 #define MECH_EXHIBIT_H_
3
4 #include "exhibit.h"
5 #include "machine.h"
6
7 class MechExhibit : public Exhibit {
8 private:
9
10 public:
11         MechExhibit();
12         ~MechExhibit();
13
14         void update(float dt);
15         void draw() const;
16 };
17
18 #endif  // MECH_EXHIBIT_H_