rattletrap-9.3.2: src/lib/Rattletrap/Type/LoadoutsAttribute.hs
{-# LANGUAGE TemplateHaskell #-}
module Rattletrap.Type.LoadoutsAttribute
( LoadoutsAttribute(..)
)
where
import Rattletrap.Type.Common
import Rattletrap.Type.LoadoutAttribute
data LoadoutsAttribute = LoadoutsAttribute
{ loadoutsAttributeBlue :: LoadoutAttribute
, loadoutsAttributeOrange :: LoadoutAttribute
} deriving (Eq, Ord, Show)
$(deriveJson ''LoadoutsAttribute)