Files
MRCC/launcher/PCL-CE/PCL.Core/Minecraft/Saves/DataVersionBoundaries.cs
T
xyou f70b061d1a
CI / Go Backend (push) Canceled after 0s
feat: 项目初始化 + 3D方块世界原型 + AI助搭系统
初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器

HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块

Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚

AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
2026-08-08 14:07:56 +08:00

21 lines
749 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace PCL.Core.Minecraft.Saves;
/// <summary>
/// DataVersion 关键分界线常量。
/// 各值取自对应快照的 <c>Data.DataVersion</c>。
/// </summary>
public static class DataVersionBoundaries
{
/// <summary>15w32a1.9 快照)引入了 DataVersion 字段</summary>
public const int _15w32a = 100;
/// <summary>17w47a1.13 快照)引入了 DataPacks 字段</summary>
public const int _17w47a = 1443;
/// <summary>20w20a1.16 快照)引入了 WorldGenSettings.seed 替代 RandomSeed</summary>
public const int _20w20a = 2536;
/// <summary>26.1-snapshot-6 引入了 difficulty_settings 复合标签、spawn.pos 数组、外部种子文件</summary>
public const int _261snapshot6 = 4774;
}