| 75 | // implementation ParticleSystemQuad |
| 76 | |
| 77 | ParticleSystemQuad* ParticleSystemQuad::create(std::string_view filename) |
| 78 | { |
| 79 | ParticleSystemQuad* ret = new ParticleSystemQuad(); |
| 80 | if (ret->initWithFile(filename)) |
| 81 | { |
| 82 | ret->autorelease(); |
| 83 | return ret; |
| 84 | } |
| 85 | AX_SAFE_DELETE(ret); |
| 86 | return ret; |
| 87 | } |
| 88 | |
| 89 | ParticleSystemQuad* ParticleSystemQuad::createWithTotalParticles(int numberOfParticles) |
| 90 | { |
nothing calls this directly
no test coverage detected