mirror of
https://github.com/onyx-and-iris/Lottery.git
synced 2025-04-03 04:13:58 +01:00
it now only enforced Generate method. Generate method must now return Numbers type
11 lines
185 B
C#
11 lines
185 B
C#
namespace Lottery
|
|
{
|
|
/// <summary>
|
|
/// All Generators must implement the Generate method
|
|
/// </summary>
|
|
interface IGenerator
|
|
{
|
|
Numbers Generate();
|
|
}
|
|
}
|