| 12345678910111213141516 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2019 Marko Pintera ([email protected]). All rights reserved. **********************//
- namespace bs.Editor
- {
- /// <summary>
- /// Numbers of bits per audio sample.
- /// </summary>
- public enum AudioBitDepth
- {
- Bits8 = 8,
- Bits16 = 16,
- Bits24 = 24,
- Bits32 = 32
- }
- }
|