aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/status/mod.rs
blob: 56aa577e5cf68b261e62d6544af5a0e86137d0d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod clientbound_status_response_packet;
pub mod serverbound_status_request_packet;

use packet_macros::declare_state_packets;

declare_state_packets!(
    StatusPacket,
    Serverbound => {
        0x00: serverbound_status_request_packet::ServerboundStatusRequestPacket,
    },
    Clientbound => {
        0x00: clientbound_status_response_packet::ClientboundStatusResponsePacket,
    }
);