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