Golang implementation for playing card game "XENO" with CLI. (work in progress)
カードゲーム"XENO" をCLIで遊んでみるためのgolang実装。 開発中。
main.go
// 4 com players
conf := xeno.GameConfig{
Players: []xeno.PlayerConfig{
{Name: "Player1"},
{Name: "Player2"},
{Name: "Player3"},
{Name: "Player4"},
},
}
// 1 com player, 1 Human
conf := xeno.GameConfig{
Players: []xeno.PlayerConfig{
{Name: "Player1"},
{Name: "Player2", Manual: true},
},
}