evac/State.hs

9 lines
232 B
Haskell
Raw Normal View History

2019-05-15 02:50:27 -04:00
module State where
type Group = [MainCharacter]
type NeoTokyo = [Group]
type Downed = [MainCharacter]
type BoardState = (NeoTokyo, Downed)
data MainCharacter = Asuka | Shinji | Rei | Misato | Ritsuko | Gendo
deriving (Show, Eq)