pk3DS/pk3DS.Core/Randomizers/IRandomizer.cs
Kurt fa5bdee781 Refactoring
use new randomization objects in other forms
re-standardize namespaces a little
2017-09-09 22:16:55 -07:00

8 lines
109 B
C#

namespace pk3DS.Core.Randomizers
{
public interface IRandomizer
{
void Execute();
}
}