rattletrap-9.0.3: source/library/Rattletrap/Type/ByteAttribute.hs
{-# LANGUAGE TemplateHaskell #-}
module Rattletrap.Type.ByteAttribute
( ByteAttribute(..)
)
where
import Rattletrap.Type.Common
import Rattletrap.Type.Word8le
newtype ByteAttribute = ByteAttribute
{ byteAttributeValue :: Word8le
} deriving (Eq, Ord, Show)
$(deriveJson ''ByteAttribute)