11 lines
243 B
Haskell
11 lines
243 B
Haskell
{-# LANGUAGE StrictData #-}
|
|
|
|
module Dodge.Data.CamouflageStatus where
|
|
|
|
data CamouflageStatus
|
|
= FullyVisible
|
|
| Invisible
|
|
deriving (Eq, Ord, Enum, Show, Bounded, Read) --Generic, Flat)
|
|
|
|
--deriveJSON defaultOptions ''CamouflageStatus
|