mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-07-08 17:57:02 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.IO.Meta` builds the normal Nuget package that is used by all other projects and includes all namespaces. `SabreTools.IO` builds to `SabreTools.IO.Common` to avoid overwriting issues on publish.
16 lines
326 B
C#
16 lines
326 B
C#
namespace SabreTools.IO.Compression.Blast
|
|
{
|
|
public static class Constants
|
|
{
|
|
/// <summary>
|
|
/// Maximum code length
|
|
/// </summary>
|
|
public const int MAXBITS = 13;
|
|
|
|
/// <summary>
|
|
/// Maximum window size
|
|
/// </summary>
|
|
public const int MAXWIN = 4096;
|
|
}
|
|
}
|