mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-08 12:51:51 +09:00
Former-commit-id: 2fd36e0b2b7cd45ecdab628e0d2679efd17f01f3 Former-commit-id: 5c4109d7a2ce320584674c5415054a381ba4d6ec
14 lines
272 B
Kotlin
14 lines
272 B
Kotlin
package net.torvald.random
|
|
|
|
import java.util.Random
|
|
|
|
/**
|
|
* Created by minjaesong on 16-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)
|