2021-05-07 22:05:11 -04:00

19 lines
212 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace UniversalEditor.Compression.Puyo
{
public enum CompressionFormat
{
NULL,
CNX,
CXLZ,
LZ00,
LZ01,
LZSS,
ONZ,
PRS
}
}