mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-06-03 00:58:13 -04:00
12 lines
177 B
C#
12 lines
177 B
C#
using System.IO;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class StreamFile
|
|
{
|
|
public string path;
|
|
public string fileName;
|
|
public Stream stream;
|
|
}
|
|
}
|