21 lines
318 B
C#
21 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Toolbox.Library
|
|
{
|
|
public enum CompressionType
|
|
{
|
|
None,
|
|
Yaz0,
|
|
Zlib,
|
|
Gzip,
|
|
Lz4,
|
|
Lz4f,
|
|
Zstb,
|
|
MarioTennisCustom,
|
|
}
|
|
}
|