Files
secret-hitler/game/state/card.go
Bel LaPointe 3954d3cc6a stub state
2021-02-21 23:22:49 -06:00

18 lines
236 B
Go

package state
type CardState struct {
IsFacist bool
IsDrawn bool
IsPlayed bool
IsDiscarded bool
}
func (state CardState) Redact(alignment Alignment) CardState {
state2 := state
state2.IsFacist = false
return state2
}