10 lines
177 B
C#
10 lines
177 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
namespace Gameplay.Buff
|
|||
|
|
{
|
|||
|
|
public class SideBuffManager
|
|||
|
|
{
|
|||
|
|
public int troopId;
|
|||
|
|
public List<int> cacheBuffIds;
|
|||
|
|
}
|
|||
|
|
}
|