| 6 | |
| 7 | namespace engine { |
| 8 | Particle::Particle() : |
| 9 | type(Type::Generic), |
| 10 | mass(1.0f), |
| 11 | collisionEnabled(false), |
| 12 | rotation(0.0f), |
| 13 | rotationalSpeed(0.0f), |
| 14 | timeRemaining(-1), |
| 15 | active(false), |
| 16 | reserved(false) |
| 17 | { |
| 18 | } |
| 19 | Particle::Particle(Type type) : Particle() { |
| 20 | this->type = type; |
| 21 |
nothing calls this directly
no test coverage detected