Untitled
unknown
plain_text
10 months ago
210 B
3
Indexable
public static int RepeatDice(int repeatCount, int dice) { Random rnd = new Random(); int ret = 0; for (int i = 0; i < repeatCount; i++) ret = ret + rnd.Next(1,dice); return ret; }
Editor is loading...
Leave a Comment