2020-06-21 03:33:05 +02:00
|
|
|
using System;
|
|
|
|
|
2020-08-08 22:24:01 +02:00
|
|
|
namespace Geekbot.Core.Extensions
|
2020-06-21 03:33:05 +02:00
|
|
|
{
|
|
|
|
public static class IntExtensions
|
|
|
|
{
|
|
|
|
public static void Times(this int count, Action action)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
action();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|