10 lines
231 B
C#
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>();
|
||
|
|
}
|
||
|
|
}
|