This class stores low-frequency and high-frequency gain values that range from `0.0` to `1.0` and can be used to create a low pass filter (in your engine). ```cs public class AudioFilter { public float gainLF; public float gainHF; } ```