blob: 7d356707e5eca1cde7d850e1397e4b3d023d817e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package at.hannibal2.skyhanni.events
import net.minecraft.network.Packet
import net.minecraftforge.fml.common.eventhandler.Cancelable
@Cancelable
/**
* Note: This event is async and may not be executed on the main minecraft thread.
*/
abstract class PacketEvent : LorenzEvent() {
abstract val direction: Direction
abstract val packet: Packet<*>
/**
* Note: This event is async and may not be executed on the main minecraft thread.
*/
data class ReceiveEvent(override val packet: Packet<*>) : PacketEvent() {
override val direction = Direction.INBOUND
}
/**
* Note: This event is async and may not be executed on the main minecraft thread.
*/
data class SendEvent(override val packet: Packet<*>) : PacketEvent() {
override val direction = Direction.OUTBOUND
}
enum class Direction {
INBOUND, OUTBOUND
}
}
|