7 lines
166 B
C#
7 lines
166 B
C#
namespace DaggerFramework.Resources
|
|
{
|
|
public interface IResourceSaver<T> where T : Resource
|
|
{
|
|
public bool TrySave(string path, in T resource);
|
|
}
|
|
} |