2026-01-22 17:29:58 +08:00

28 lines
509 B
C#

/*
* @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<uint, MapConfig> LevelConfigs;
[MemoryPackConstructor]
public MatchLevelData()
{
LevelConfigs = new Dictionary<uint, MapConfig>();
}
}
}