From 87552372fb18e2f5445ad3eb6bf660a1546d6300 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 13 Sep 2024 17:25:19 -0400 Subject: [PATCH] Rerun gen-protos --- save/src/protos.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/save/src/protos.rs b/save/src/protos.rs index ae49022c..fa03540a 100644 --- a/save/src/protos.rs +++ b/save/src/protos.rs @@ -1,19 +1,16 @@ // This file is @generated by prost-build. -#[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct Meta { /// Number of voxels along the edge of a chunk #[prost(uint32, tag = "1")] pub chunk_size: u32, } -#[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Character { /// Graph edges to traverse from the origin to find the node containing the character's entity #[prost(bytes = "vec", tag = "1")] pub path: ::prost::alloc::vec::Vec, } -#[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct EntityNode { /// Entities whose origins lie within this node, each encoded as: @@ -21,14 +18,12 @@ pub struct EntityNode { #[prost(bytes = "vec", repeated, tag = "1")] pub entities: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec>, } -#[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct VoxelNode { /// Voxel data for each modified chunk #[prost(message, repeated, tag = "1")] pub chunks: ::prost::alloc::vec::Vec, } -#[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct Chunk { /// Which dodecahedron vertex is associated with this chunk