14 lines
230 B
C#
14 lines
230 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniversalEditor.Compression.Modules.Explode.Internal
|
|
{
|
|
public struct ExplodeInfo
|
|
{
|
|
public Stream instr;
|
|
}
|
|
}
|