Able
Askowl Base Library Enabler
Pick.cs
1 // Copyright 2018 (C) paul@marrington.net http://www.askowl.net/unity-packages
2 
3 namespace Askowl {
4  /// <a href="http://bit.ly/2Opnmk1">Interface so that code can use a picker without know more about the source. A picker returns a value using source specific rules.</a>
5  public interface Pick<out T> {
6  /// <a href="http://bit.ly/2Opnmk1">Method to call to return the selection</a>
7  T Pick();
8  }
9 }
Definition: Clock.cs:3
T Pick()
Method to call to return the selection
Interface so that code can use a picker without know more about the source. A picker returns a value ...
Definition: Pick.cs:5