AudioImportOptions.cs 480 B

12345678910111213141516
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2019 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. namespace bs.Editor
  4. {
  5. /// <summary>
  6. /// Numbers of bits per audio sample.
  7. /// </summary>
  8. public enum AudioBitDepth
  9. {
  10. Bits8 = 8,
  11. Bits16 = 16,
  12. Bits24 = 24,
  13. Bits32 = 32
  14. }
  15. }