pioneers/src/PioneerTypes.hs

24 lines
545 B
Haskell
Raw Normal View History

2014-02-08 12:01:40 +01:00
module PioneerTypes
where
data Structure = Flag -- Flag
| Barrack -- Small
| Sawmill -- Medium
| Castle -- Large
data Amount = Infinite -- Neverending supply
| Finite Int -- Finite supply
-- Extremely preliminary, expand when needed
data Commodity = WoodPlank
| Sword
| Fish
data Resource = Coal
| Iron
| Gold
| Granite
| Water
| Fishes
deriving Eq