mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-26 13:50:21 -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;
|
|
}
|
|
}
|