added models

This commit is contained in:
Wyatt J. Miller 2020-09-23 22:35:09 -04:00
parent 19fd2db71c
commit a9c1f3d25b
4 changed files with 26 additions and 0 deletions

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -0,0 +1,6 @@
package com.wyattjmiller.dicerollerapp
enum class Coin {
Heads,
Tails
}

View File

@ -0,0 +1,10 @@
package com.wyattjmiller.dicerollerapp
enum class Die {
One,
Two,
Three,
Four,
Five,
Six
}

View File

@ -0,0 +1,4 @@
package com.wyattjmiller.dicerollerapp
class Randomizer {
}