This repository has been archived on 2024-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
dungeoneer-cs/Util.cs
2024-03-28 21:42:10 -04:00

14 lines
189 B
C#

using System.Security.Cryptography;
namespace Dungeoneer {
public static class Util {
public static int Roll(int sides) {
return RandomNumberGenerator.GetInt32(sides);
}
}
}