/* * @Author: 白哉 * @Description: * @Date: 2025年09月05日 星期五 15:09:09 * @Modify: */ using System.Collections.Generic; using MemoryPack; using RuntimeData; namespace TH1_Logic.MatchConfig { [MemoryPackable] public partial class MatchLevelData { public Dictionary LevelConfigs; [MemoryPackConstructor] public MatchLevelData() { LevelConfigs = new Dictionary(); } } }