stub state

This commit is contained in:
Bel LaPointe
2021-02-21 23:22:49 -06:00
parent 7216ac1620
commit 3954d3cc6a
6 changed files with 125 additions and 0 deletions

17
game/state/card.go Normal file
View File

@@ -0,0 +1,17 @@
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
}