14 lines
189 B
C#
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);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|