mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-10 18:44:05 +09:00
14 lines
274 B
Kotlin
14 lines
274 B
Kotlin
package net.torvald.random
|
|
|
|
import java.util.Random
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-02-03.
|
|
*/
|
|
class Fudge3
|
|
/**
|
|
* Define new set of Fudge dice with three dice (3dF).
|
|
* @param randfunc java.util.Random or its extension
|
|
*/
|
|
(randfunc: Random) : FudgeDice(randfunc, 3)
|