HPPH/HPPH.Generators/Features/IGeneratorFeature.cs
2024-07-06 00:04:07 +02:00

10 lines
349 B
C#

using System.Collections.Generic;
using System.Collections.Immutable;
namespace HPPH.Generators;
internal interface IGeneratorFeature
{
public IEnumerable<(string name, string source)> GenerateFor(ColorFormatData colorFormat);
public IEnumerable<(string name, string source)> GenerateFor(ImmutableArray<ColorFormatData> colorFormats);
}