Files
2021-03-22 21:25:14 -07:00

8 lines
115 B
C#

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