Skip to content

Commit

Permalink
Quick reskin
Browse files Browse the repository at this point in the history
  • Loading branch information
bartavelle committed Jan 19, 2018
1 parent 79950b6 commit 92b0b2d
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 94 deletions.
16 changes: 8 additions & 8 deletions Startups/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ data CompanySide = A | B
data CompanyProfile = CompanyProfile Company CompanySide
deriving (Eq, Ord, Show)

data Resource = Youthfulness -- ^ Glass
| Vision -- ^ Papyrus
| Adoption -- ^ Fabric
| Development -- ^ Clay
| Operations -- ^ Stone
| Marketing -- ^ Wood
| Finance -- ^ Ore
data Resource = Hype -- ^ Glass
| Vision -- ^ Papyrus
| Adoption -- ^ Fabric
| Development -- ^ Clay
| Operations -- ^ Stone
| Marketing -- ^ Wood
| Finance -- ^ Ore
deriving (Ord, Eq, Show, Enum, Bounded)

baseResources :: S.Set Resource
baseResources = S.fromList [Development, Operations, Marketing, Finance]

advancedResources :: S.Set Resource
advancedResources = S.fromList [Adoption, Vision, Youthfulness]
advancedResources = S.fromList [Adoption, Vision, Hype]

newtype Poacher = Poacher { getPoacher :: Integer }
deriving (Ord, Eq, Num, Integral, Real, Enum, Show, FromJSON, ToJSON)
Expand Down
Loading

0 comments on commit 92b0b2d

Please sign in to comment.