syntax = "proto3";
package protocol;
import public "message_c2s.proto";
import public "state.proto";
import public "goodbye_reason.proto";
import public "message_s2c.proto";
import public "player.proto";
import public "planet.proto";
message PacketWrapper {
int64 packet_id = 1; // What is the Packet ID of this packet?
bytes packet_data = 2; // Protobuf-encoded bytearray containing the actual packet
}