mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
13 lines
466 B
C#
13 lines
466 B
C#
using EggLink.DanhengServer.Data.Excel;
|
|
using System.Collections.Generic;
|
|
|
|
namespace EggLink.DanhengServer.Data
|
|
{
|
|
public static class GameData
|
|
{
|
|
public static Dictionary<int, AvatarConfigExcel> AvatarConfigData { get; private set; } = [];
|
|
public static Dictionary<int, StageConfigExcel> StageConfigData { get; private set; } = [];
|
|
public static Dictionary<int, MapEntranceExcel> MapEntranceData { get; private set; } = [];
|
|
}
|
|
}
|