package main
// A game of Mythic
type Game struct {
Name string
Chaos int
}
// A character in a game
type Character struct {
Game Game
// An entry in the fate table
type Fate struct {
Game *Game
Odds int
Low int
Middle int
High int