Nerfed/Nerfed.Runtime/Resource/StorageContainer.cs
robert 92cf24fe9f - Added resource manager
- Shader building now inspects the spir-v for descriptor sets and writes the info to the output binary
2024-07-13 13:45:12 +02:00

10 lines
176 B
C#

namespace Nerfed.Runtime;
public static class StorageContainer
{
public static Stream OpenStream(string file)
{
return File.Open(file, FileMode.Open);
}
}