Files
project-reset/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/GUIDProvider.cs
2025-03-12 14:22:16 -04:00

10 lines
224 B
C#

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