protected void StopParticles(String type, int count)
        {
            Locator      lokator  = new Locator();
            ParticleType particle = new LoggedParticle(lokator.StartParticle());

            particle.stopParticle(type);
            lokator.provide(particle);
        }
        protected void SpawnParticles(String type, int count)
        {
            Locator      lokator  = new Locator();
            ParticleType particle = new LoggedParticle(lokator.StartParticle());

            particle.GetParticles(type);
            lokator.provide(particle);
            //particle.spawn(type, count);
        }