Files
cuetools.net/CUETools.Codecs.Flake/SubframeType.cs
Natalia Portillo 422c24145c Fix case collision between FLAKE and Flake. (#52)
* Fix case collision between FLAKE and Flake.

* Keep only necessary changes of PR#52

Co-authored-by: Wolfgang Stöggl <c72578@yahoo.de>
2020-06-07 07:36:15 +02:00

11 lines
170 B
C#

namespace CUETools.Codecs.Flake
{
public enum SubframeType
{
Constant = 0,
Verbatim = 1,
Fixed = 8,
LPC = 32
}
}