~starkingdoms/starkingdoms

ref: 2b6612f60801525694dd4292ae90d0e90928e9b7 starkingdoms/protocol/src/pbuf/starkingdoms-protocol.proto -rw-r--r-- 442 bytes
2b6612f6 — ghostlyzsh i heard one time that other module types are good to be accessible 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";
import public "input.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
}