diff options
author | Linnea Gräf <nea@nea.moe> | 2024-05-29 21:09:07 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-06-01 01:34:34 +0200 |
commit | e630426656b713ec67bfe7ede2f2081751e349db (patch) | |
tree | 63eff82e16d400a42b5a48bfcb6c89ec81c6763e /src/main/kotlin/moe/nea/firmament/apis/ingame/JoinedCustomPayload.kt | |
parent | fac6103658b2c8d6bab3598606d57041cfe16e0c (diff) | |
download | firmament-e630426656b713ec67bfe7ede2f2081751e349db.tar.gz firmament-e630426656b713ec67bfe7ede2f2081751e349db.tar.bz2 firmament-e630426656b713ec67bfe7ede2f2081751e349db.zip |
[WIP] Add mod api
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/apis/ingame/JoinedCustomPayload.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/apis/ingame/JoinedCustomPayload.kt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/apis/ingame/JoinedCustomPayload.kt b/src/main/kotlin/moe/nea/firmament/apis/ingame/JoinedCustomPayload.kt new file mode 100644 index 0000000..c673264 --- /dev/null +++ b/src/main/kotlin/moe/nea/firmament/apis/ingame/JoinedCustomPayload.kt @@ -0,0 +1,25 @@ +/* + * SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +package moe.nea.firmament.apis.ingame + +import net.minecraft.network.packet.CustomPayload + +/** + * A class to smuggle two parsed instances of the same custom payload packet. + */ +class JoinedCustomPayload( + val original: CustomPayload, + val smuggled: FirmamentCustomPayload +) : CustomPayload { + companion object { + val joinedId = CustomPayload.id<JoinedCustomPayload>("firmament:joined") + } + + override fun getId(): CustomPayload.Id<out JoinedCustomPayload> { + return joinedId + } +} |