stub state
This commit is contained in:
17
game/state/card.go
Normal file
17
game/state/card.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user