rattletrap-4.0.0: library/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)