Files
NebulaLauncher/Nebula.Shared/Models/DownloadStreamHeaderFlags.cs
2025-01-05 17:05:23 +03:00

13 lines
395 B
C#

namespace Nebula.Shared.Models;
[Flags]
public enum DownloadStreamHeaderFlags
{
None = 0,
/// <summary>
/// If this flag is set on the download stream, individual files have been pre-compressed by the server.
/// This means each file has a compression header, and the launcher should not attempt to compress files itself.
/// </summary>
PreCompressed = 1 << 0
}