- //
- // Created by jovian on 15/08/17.
- //
- #include "ScullingQuery.h"
- bool ScullingQuery::ReportFixture(b2Fixture *fixture) {
- m_tab.push_back(fixture->GetBody());
- return true;
- }
- const std::vector<b2Body *> &ScullingQuery::getTab() const {
- return m_tab;
- }
|