ScullingQuery.h 383 B

123456789101112131415161718192021
  1. //
  2. // Created by jovian on 15/08/17.
  3. //
  4. #ifndef TINYSHOOTER_SCULLINGQUERY_H
  5. #define TINYSHOOTER_SCULLINGQUERY_H
  6. #include <Box2D/Box2D.h>
  7. class ScullingQuery : public b2QueryCallback {
  8. public:
  9. bool ReportFixture(b2Fixture *fixture) override;
  10. const std::vector<b2Body *> &getTab() const;
  11. private:
  12. std::vector<b2Body *> m_tab;
  13. };
  14. #endif //TINYSHOOTER_SCULLINGQUERY_H