18 lines
337 B
Haskell
18 lines
337 B
Haskell
{-# LANGUAGE StrictData #-}
|
|
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
module Dodge.Data.AimStance where
|
|
|
|
import Control.Lens
|
|
import Data.Aeson
|
|
import Data.Aeson.TH
|
|
|
|
data AimStance
|
|
= TwoHandTwist
|
|
| TwoHandFlat
|
|
| OneHand
|
|
deriving (Eq, Ord, Show, Read) --Generic, Flat)
|
|
|
|
makeLenses ''AimStance
|
|
deriveJSON defaultOptions ''AimStance
|