Files

8 lines
113 B
C#
Raw Permalink Normal View History

namespace BurnOutSharp.Matching
{
public interface IMatch<T>
{
T Needle { get; set; }
}
}