ViaVersion/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_20_2to1_20/packet/ServerboundPackets1_20_2.java

88 lines
2.7 KiB
Java

/*
* This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion
* Copyright (C) 2016-2023 ViaVersion and contributors
*
* 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 <http://www.gnu.org/licenses/>.
*/
package com.viaversion.viaversion.protocols.protocol1_20_2to1_20.packet;
import com.viaversion.viaversion.api.protocol.packet.ServerboundPacketType;
public enum ServerboundPackets1_20_2 implements ServerboundPacketType {
TELEPORT_CONFIRM, // 0x00
QUERY_BLOCK_NBT, // 0x01
SET_DIFFICULTY, // 0x02
CHAT_ACK, // 0x03
CHAT_COMMAND, // 0x04
CHAT_MESSAGE, // 0x05
CHAT_SESSION_UPDATE, // 0x06
CHUNK_BATCH_RECEIVED, // 0x07 // TODO AAAAAAAAAAAAAAAAAAAAAAAAA
CLIENT_STATUS, // 0x08
CLIENT_SETTINGS, // 0x09
TAB_COMPLETE, // 0x0A
CONFIGURATION_ACKNOWLEDGED, // 0x0B // TODO AAAAAAAAAAAAAAAAAAAAAAAAA
CLICK_WINDOW_BUTTON, // 0x0C
CLICK_WINDOW, // 0x0D
CLOSE_WINDOW, // 0x0E
PLUGIN_MESSAGE, // 0x0F // TODO AAAAAAAAAAAAAAAAAAAAAAAAA
EDIT_BOOK, // 0x10
ENTITY_NBT_REQUEST, // 0x11
INTERACT_ENTITY, // 0x12
GENERATE_JIGSAW, // 0x13
KEEP_ALIVE, // 0x14
LOCK_DIFFICULTY, // 0x15
PLAYER_POSITION, // 0x16
PLAYER_POSITION_AND_ROTATION, // 0x17
PLAYER_ROTATION, // 0x18
PLAYER_MOVEMENT, // 0x19
VEHICLE_MOVE, // 0x1A
STEER_BOAT, // 0x1B
PICK_ITEM, // 0x1C
CRAFT_RECIPE_REQUEST, // 0x1D
PLAYER_ABILITIES, // 0x1E
PLAYER_DIGGING, // 0x1F
ENTITY_ACTION, // 0x20
STEER_VEHICLE, // 0x21
PONG, // 0x22
RECIPE_BOOK_DATA, // 0x23
SEEN_RECIPE, // 0x24
RENAME_ITEM, // 0x25
RESOURCE_PACK_STATUS, // 0x26
ADVANCEMENT_TAB, // 0x27
SELECT_TRADE, // 0x28
SET_BEACON_EFFECT, // 0x29
HELD_ITEM_CHANGE, // 0x2A
UPDATE_COMMAND_BLOCK, // 0x2B
UPDATE_COMMAND_BLOCK_MINECART, // 0x2C
CREATIVE_INVENTORY_ACTION, // 0x2D
UPDATE_JIGSAW_BLOCK, // 0x2E
UPDATE_STRUCTURE_BLOCK, // 0x2F
UPDATE_SIGN, // 0x30
ANIMATION, // 0x31
SPECTATE, // 0x32
PLAYER_BLOCK_PLACEMENT, // 0x33
USE_ITEM; // 0x34
@Override
public int getId() {
return ordinal();
}
@Override
public String getName() {
return name();
}
}