You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
213B

  1. #pragma once
  2. /**
  3. * Gate inputs will be considered "low" if they are below this
  4. */
  5. const float cGateLow = .8f;
  6. /**
  7. * Gate inputs will be considered "high" if they are above this
  8. */
  9. const float cGateHi = 1.6f;