mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
8 lines
201 B
C#
8 lines
201 B
C#
namespace Mugwump;
|
|
|
|
internal static class IRandomExtensions
|
|
{
|
|
internal static Position NextPosition(this IRandom random, int maxX, int maxY) =>
|
|
new(random.Next(maxX), random.Next(maxY));
|
|
}
|