This commit is contained in:
2025-06-03 22:21:01 +01:00
parent 33ebdcb0de
commit e6bb7ac753
+16
View File
@@ -0,0 +1,16 @@
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TemplateHaskell #-}
module Dodge.Data.AimStance (module Dodge.Data.AimStance) where
import Data.Aeson
import Data.Aeson.TH
data AimStance
= TwoHandUnder
| TwoHandOver
| TwoHandFlat
| OneHand
deriving (Eq, Ord, Show, Read) --Generic, Flat)
deriveJSON defaultOptions ''AimStance