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

15 lines
194 B
C#

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