Files
zeling_v2/Assets/_Game/Scripts/Localization/Language.cs
2026-06-06 09:00:11 +08:00

16 lines
448 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 BaseGames.Localization
{
/// <summary>
/// 游戏支持的语言列表。
/// 添加新语言时同步在 Assets/_Game/Data/Localization/ 下创建对应子目录和 JSON 表文件
/// 推荐用「BaseGames / Localization / 表格编辑器」新建并自动注册 Addressables
/// </summary>
public enum Language
{
ChineseSimplified,
English,
Japanese,
Korean,
}
}