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