//------------------------------------------------ //--- 010 Editor v11.0.1 Binary Template // // File: vt2_network_config.bt // Authors: Lucas Schwiderski // Version: // Purpose: // Category: Vermintide 2 // File Mask: *.network_config // ID Bytes: 20 00 00 00 // History: //------------------------------------------------ typedef enum { PeerToPeer, ClientServer } NetworkType; typedef enum { Int = 0x01, Int64 = 0x07, GamerObjectId = 0x34 } Primitive; typedef struct { Primitive primitive; uint16 bits; uint32 padding; uint32 name_hash; uint32 tolerance; uint32 min; // Possibly 'min' for number values uint32 max; } Type; uint32 version; NetworkType network_type; uint32 reliable_send_buffer_size; uint32 reliable_receive_buffer_size; uint32 num_types ; Type types[num_types];