侧边栏配置

This commit is contained in:
2026-02-04 16:04:46 +08:00
parent 2109610194
commit b054e2ee86
24 changed files with 21091 additions and 6886 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using UnityEngine;
namespace AibisDream.UI
{
[Serializable]
public struct ColorTint
{
public Color normalColor;
public Color highlightedColor;
public Color pressedColor;
public Color selectedColor;
public Color disabledColor;
}
}