rattletrap-9.3.2: src/lib/Rattletrap/Type/EnumAttribute.hs
{-# LANGUAGE TemplateHaskell #-}
module Rattletrap.Type.EnumAttribute
( EnumAttribute(..)
)
where
import Rattletrap.Type.Common
newtype EnumAttribute = EnumAttribute
{ enumAttributeValue :: Word16
} deriving (Eq, Ord, Show)
$(deriveJson ''EnumAttribute)