7 lines
146 B
C#
Raw Normal View History

namespace TestInterfaceImplementation
{
public interface IScorable<Item, Score>
{
Score GetScore(Item item, object state);
}
}