diff options
Diffstat (limited to 'stats/option.go')
| -rw-r--r-- | stats/option.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/stats/option.go b/stats/option.go new file mode 100644 index 0000000..e8d729d --- /dev/null +++ b/stats/option.go @@ -0,0 +1,11 @@ +package stats + +type ChoiceStat struct { + Amount int + Wins int +} + +type Choice struct { + Taken *ChoiceStat + Ignored *ChoiceStat +} |
