-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: avoid using ClientPlayNetworking.PlayChannelHandler in packet in…
…itialization
- Loading branch information
1 parent
8f338b5
commit 0600925
Showing
12 changed files
with
80 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...o/github/samarium150/minecraft/mod/structures_compass/network/packet/c2s/PacketHandler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright (c) 2022 Samarium | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>. | ||
*/ | ||
package io.github.samarium150.minecraft.mod.structures_compass.network.packet.c2s | ||
|
||
import net.fabricmc.fabric.api.networking.v1.PacketSender | ||
import net.minecraft.network.PacketByteBuf | ||
import net.minecraft.server.MinecraftServer | ||
import net.minecraft.server.network.ServerPlayNetworkHandler | ||
import net.minecraft.server.network.ServerPlayerEntity | ||
|
||
/** | ||
* @see net.fabricmc.fabric.api.networking.v1.ServerPlayNetworking.PlayChannelHandler | ||
*/ | ||
fun interface PacketHandler { | ||
fun receive( | ||
server: MinecraftServer, | ||
player: ServerPlayerEntity, | ||
handler: ServerPlayNetworkHandler, | ||
buf: PacketByteBuf, | ||
responseSender: PacketSender | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...o/github/samarium150/minecraft/mod/structures_compass/network/packet/s2c/PacketHandler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright (c) 2022 Samarium | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>. | ||
*/ | ||
package io.github.samarium150.minecraft.mod.structures_compass.network.packet.s2c | ||
|
||
import net.fabricmc.fabric.api.networking.v1.PacketSender | ||
import net.minecraft.client.MinecraftClient | ||
import net.minecraft.client.network.ClientPlayNetworkHandler | ||
import net.minecraft.network.PacketByteBuf | ||
|
||
/** | ||
* @see net.fabricmc.fabric.api.client.networking.v1.ClientPlayNetworking.PlayChannelHandler | ||
*/ | ||
fun interface PacketHandler { | ||
fun receive( | ||
client: MinecraftClient, | ||
handler: ClientPlayNetworkHandler, | ||
buf: PacketByteBuf, | ||
responseSender: PacketSender | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters