IGUIDGenerator.cs 146 B

1234567
  1. namespace SingularityGroup.HotReload.Editor.ProjectGeneration
  2. {
  3. internal interface IGUIDGenerator
  4. {
  5. string ProjectGuid(string name);
  6. }
  7. }