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/alignment.go Normal file
View File

@@ -0,0 +1,17 @@
package state
type Alignment int
const (
LIBERAL = Alignment(iota)
FACIST
HITLER
)
func (a Alignment) CanSeeFacist() bool {
return a == FACIST
}
func (a Alignment) CanSeeHitler() bool {
return a == FACIST
}