10 lines
176 B
C#
10 lines
176 B
C#
namespace Nerfed.Runtime;
|
|
|
|
public static class StorageContainer
|
|
{
|
|
public static Stream OpenStream(string file)
|
|
{
|
|
return File.Open(file, FileMode.Open);
|
|
}
|
|
}
|