# Particle Systems
Particles are used for effects like smoke, sparks, fire, and explosions.
## Creating a Particle Emitter
```python
from lunaengine.graphics.particles import ParticleEmitter
emitter = ParticleEmitter(x=300, y=300)
```
## Example Uses
- explosions
- magic effects
- rain
- smoke
Particles make the game feel more alive.