mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-12 14:51:51 +09:00
Former-commit-id: f924467637c8e34ecc9b2ffd00b343253c40aaf7 Former-commit-id: 7779de4420c27e06ee17e8576b643c366d434ef8
14 lines
266 B
Kotlin
14 lines
266 B
Kotlin
package com.torvald.random
|
|
|
|
import java.util.Random
|
|
|
|
/**
|
|
* Created by minjaesong on 16-02-03.
|
|
*/
|
|
class Fudge3
|
|
/**
|
|
* Define new set of fudge dice with three dice.
|
|
* @param randfunc java.util.Random or its extension
|
|
*/
|
|
(randfunc: Random) : FudgeDice(randfunc, 3)
|