rattletrap-6.0.2: library/Rattletrap/Type/QWordAttribute.hs
{-# LANGUAGE TemplateHaskell #-}
module Rattletrap.Type.QWordAttribute
( QWordAttribute(..)
)
where
import Rattletrap.Type.Common
import Rattletrap.Type.Word64le
newtype QWordAttribute = QWordAttribute
{ qWordAttributeValue :: Word64le
} deriving (Eq, Ord, Show)
$(deriveJson ''QWordAttribute)