_xiaofang/xiaofang/Assets/Obi/Scripts/Common/DataStructures/CellSpan.cs
杨号敬 bcc74f0465 add
2024-12-18 02:18:45 +08:00

18 lines
281 B
C#

using UnityEngine;
using System.Collections;
namespace Obi
{
public struct CellSpan
{
public VInt4 min;
public VInt4 max;
public CellSpan(VInt4 min, VInt4 max)
{
this.min = min;
this.max = max;
}
}
}