ProjectDDD/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/GUIDProvider.cs

10 lines
224 B (Stored with Git LFS)
C#

namespace SingularityGroup.HotReload.Editor.ProjectGeneration {
class GUIDProvider : IGUIDGenerator
{
public string ProjectGuid(string name)
{
return SolutionGuidGenerator.GuidForProject(name);
}
}
}