TraceRacer.ParticleEngine.ParticleEngine C# (CSharp) Method

ParticleEngine() public method

public ParticleEngine ( List textures, Vector2 location ) : System
textures List
location Vector2
return System
        public ParticleEngine(List<Texture2D> textures, Vector2 location)
        {
            EmitterLocation = location;
            this.textures = textures;
            this.particles = new List<Particle>();
            random = new Random();
        }