20面ダイスです。
DICE-20-
by Takahiko Sano
What is it about?
20面ダイスです。
App Store Description
20面ダイスです。
1度に振れるダイスは、1〜3個までを指定出来ます。
ダイスの目は1〜20でランダムです。
(※ 特定の目が 出やすい/出にくい 等はございません)
<以下、random関数部ソース>
func randomDice()->String {
var defineDice = ""
let iValue = Int.random(in: 1...20)
defineDice = "dice"+String(iValue)
return defineDice
}
Disclaimer:
AppAdvice does not own this application and only provides images and links contained in the iTunes Search API, to help our users find the best apps to download. If you are the developer of this app and would like your information removed, please send a request to takedown@appadvice.com and your information will be removed.
AppAdvice does not own this application and only provides images and links contained in the iTunes Search API, to help our users find the best apps to download. If you are the developer of this app and would like your information removed, please send a request to takedown@appadvice.com and your information will be removed.