mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-04 17:23:33 +01:00
core/common: remove Clone from ProcessedChunk/ProcessedRegion
These can be rather large, and there is no reason to ever clone them.
This commit is contained in:
parent
74a4fc93d0
commit
4574c06f5d
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ impl TileCoordMap {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Data structure for storing chunk data between processing and rendering steps
|
/// Data structure for storing chunk data between processing and rendering steps
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
pub struct ProcessedChunk {
|
pub struct ProcessedChunk {
|
||||||
/// Block type data
|
/// Block type data
|
||||||
pub blocks: Box<layer::BlockArray>,
|
pub blocks: Box<layer::BlockArray>,
|
||||||
|
@ -64,7 +64,7 @@ pub struct ProcessedChunk {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Data structure for storing region data between processing and rendering steps
|
/// Data structure for storing region data between processing and rendering steps
|
||||||
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
|
#[derive(Debug, Default, Serialize, Deserialize)]
|
||||||
pub struct ProcessedRegion {
|
pub struct ProcessedRegion {
|
||||||
/// List of biomes used in the region
|
/// List of biomes used in the region
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Reference in a new issue