mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-22 22:23:11 +00:00
8 lines
113 B
C#
8 lines
113 B
C#
namespace BurnOutSharp.Matching
|
|
{
|
|
public interface IMatch<T>
|
|
{
|
|
T Needle { get; set; }
|
|
}
|
|
}
|