15 lines
189 B
C#
15 lines
189 B
C#
|
using System.Security.Cryptography;
|
||
|
|
||
|
namespace Dungeoneer {
|
||
|
|
||
|
public static class Util {
|
||
|
|
||
|
public static int Roll(int sides) {
|
||
|
return RandomNumberGenerator.GetInt32(sides);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|