Copyright | (c) axionbuster 2025 |
---|---|
License | BSD-3-Clause |
Safe Haskell | None |
Language | GHC2021 |
M.Misc
Description
Defines common types used across the Minecraft protocol implementation, including teleportation flags and sound events.
Synopsis
- data TeleportFlags = TeleportFlags {}
- data SoundEvent = SoundEvent {
- soundname :: Text
- fixedrange :: Maybe Float
Documentation
data TeleportFlags Source #
flags for teleporting an entity
16+ bits
Constructors
TeleportFlags | |
Fields
|
Instances
data SoundEvent Source #
Constructors
SoundEvent | |
Fields
|
Instances
NFData SoundEvent Source # | |||||
Defined in M.Misc Methods rnf :: SoundEvent -> () # | |||||
Generic SoundEvent Source # | |||||
Defined in M.Misc Associated Types
| |||||
Show SoundEvent Source # | |||||
Defined in M.Misc Methods showsPrec :: Int -> SoundEvent -> ShowS # show :: SoundEvent -> String # showList :: [SoundEvent] -> ShowS # | |||||
Eq SoundEvent Source # | |||||
Defined in M.Misc | |||||
Pack SoundEvent Source # | |||||
Unpack SoundEvent Source # | |||||
Defined in M.Misc Methods unpack :: forall (st :: ZeroBitType) r. Parser st r SoundEvent Source # | |||||
type Rep SoundEvent Source # | |||||
Defined in M.Misc type Rep SoundEvent = D1 ('MetaData "SoundEvent" "M.Misc" "mmm-0.1.0.0-LGnxNP98iy5DdX3UVbzAAf" 'False) (C1 ('MetaCons "SoundEvent" 'PrefixI 'True) (S1 ('MetaSel ('Just "soundname") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "fixedrange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Maybe Float)))) |