/////////////////////////////////////////////////////////////////////////// ResParticle ///////////////////////////////////////////////////////////////////////////
| 60 | /// ResParticle |
| 61 | //////////////////////////////////////////////////////////////////////////////// |
| 62 | ResParticle::ResParticle(const char* name, const ParticleInfo& pinfo, fcyRefPointer<f2dSprite> sprite, BlendMode bld, double a, double b, bool rect) |
| 63 | : Resource(ResourceType::Particle, name), m_ParticleInfo(pinfo), m_BindedSprite(sprite), m_BlendMode(bld), m_HalfSizeX(a), m_HalfSizeY(b), m_bRectangle(rect) |
| 64 | { |
| 65 | } |
| 66 | |
| 67 | ResParticle::ParticlePool* ResParticle::AllocInstance()LNOEXCEPT |
| 68 | { |
nothing calls this directly
no outgoing calls
no test coverage detected