rattletrap-9.3.2: src/lib/Rattletrap/Type/Replication.hs
{-# LANGUAGE TemplateHaskell #-}
module Rattletrap.Type.Replication
( Replication(..)
)
where
import Rattletrap.Type.Common
import Rattletrap.Type.CompressedWord
import Rattletrap.Type.ReplicationValue
data Replication = Replication
{ replicationActorId :: CompressedWord
, replicationValue :: ReplicationValue
} deriving (Eq, Ord, Show)
$(deriveJson ''Replication)