Files
loop/src/Dodge/Data/UseCondition.hs
T
2025-06-05 21:15:20 +01:00

15 lines
283 B
Haskell

{-# LANGUAGE StrictData #-}
module Dodge.Data.UseCondition where
data UseCondition
= UseableWhenAimed
| UseableWhenHeld
| UseableAnytime
| NeverUsable
deriving (Eq, Show, Read)
data UseFocus
= UseFromRoot
| UseFromLocation
deriving (Eq, Show, Read)