mythic/models.go

24 lines
282 B
Go

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