LeviLamina
Loading...
Searching...
No Matches
ZipCompressionLevel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::ZipUtils {
6
7enum class ZipCompressionLevel : int {
8 Default = 0,
9 NoCompression = 1,
10 BestSpeed = 2,
11 BestCompression = 3,
12};
13
14}