layouts.go

 1package game
 2
 3type layoutKey struct {
 4	boardSize int
 5	numTeams  int
 6}
 7
 8var layouts = map[layoutKey]struct {
 9	bomb    int
10	neutral int
11	teams   []int
12}{
13	{25, 2}: {1, 7, []int{9, 8}},
14}