NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/SideBuffManager.cs

10 lines
177 B
C#
Raw Normal View History

2023-11-15 15:20:43 +08:00
using System.Collections.Generic;
namespace Gameplay.Buff
{
public class SideBuffManager
{
public int troopId;
public List<int> cacheBuffIds;
}
}