Files
Learning-UnityNGO/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/GUIDProvider.cs
T
2026-06-17 20:44:53 +03:00

10 lines
224 B
C#

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