aboutsummaryrefslogtreecommitdiff
path: root/config/game.go
blob: 0eea9172870cfe6732cec4da2ca70a2e130a58a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
package config

// Game struct containers the configuration for a game
type Game struct {
	// ChrootPath is the chroot path for the game
	ChrootPath string `yaml:"ChrootPath"`
	// FileMode is the file mode to use when copying files
	FileMode string `yaml:"FileMode"`
	// Commands is the command list
	Commands []string `yaml:"Commands"`
}