NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Bounds/Data/TriggerBoundsInfo.cs

10 lines
231 B
C#

using System.Collections.Generic;
namespace Utils.Bounds.Data
{
public class TriggerBoundsInfo
{
public List<int> boundsTagList = new List<int>();
public List<int> boundsCountList = new List<int>();
}
}