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