mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-07-05 23:29:07 +02:00
core/common: separate FileMetaVersion for different outputs
This commit is contained in:
parent
4574c06f5d
commit
fa15a4e6e5
4 changed files with 21 additions and 11 deletions
|
@ -11,10 +11,16 @@ use serde::{Deserialize, Serialize};
|
|||
|
||||
use crate::{io::fs::FileMetaVersion, resource::Biome, types::*, world::layer};
|
||||
|
||||
/// MinedMap data version number
|
||||
///
|
||||
/// Increase to force regeneration of all output files
|
||||
pub const FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
|
||||
|
||||
/// MinedMap processed region data version number
|
||||
pub const REGION_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
|
||||
|
||||
/// MinedMap map tile data version number
|
||||
pub const MAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
|
||||
|
||||
/// MinedMap lightmap data version number
|
||||
pub const LIGHTMAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
|
||||
|
||||
/// Coordinate pair of a generated tile
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue