mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
12 lines
443 B
C#
12 lines
443 B
C#
using EggLink.DanhengServer.Data.Excel;
|
|
using System.Collections.Generic;
|
|
|
|
namespace EggLink.DanhengServer.Data
|
|
{
|
|
internal static class GameData
|
|
{
|
|
public static Dictionary<int, AvatarConfigExcel> AvatarConfigData { get; private set; } = new Dictionary<int, AvatarConfigExcel>();
|
|
public static Dictionary<int, StageConfigExcel> StageConfigData { get; private set; } = new Dictionary<int, StageConfigExcel>();
|
|
}
|
|
}
|