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