11 lines
200 B
Haskell
11 lines
200 B
Haskell
{-# LANGUAGE StrictData #-}
|
|
|
|
module Dodge.Data.AimStance where
|
|
|
|
data AimStance
|
|
= TwoHandUnder
|
|
| TwoHandOver
|
|
| TwoHandFlat
|
|
| OneHand
|
|
deriving (Eq, Ord, Show, Read) --Generic, Flat)
|