mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-27 22:00:23 -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;
|
|
}
|
|
}
|