Small ResourceManager refactor, add ResourceSaver<T>.

This commit is contained in:
2024-01-21 20:24:53 +01:00
parent cfec5a59b1
commit 62e0e013f1
16 changed files with 215 additions and 54 deletions

View File

@@ -0,0 +1,7 @@
namespace DaggerFramework.Resources
{
public interface IResourceSaver<T> where T : Resource
{
public bool TrySave(string path, in T resource);
}
}