_xiaofang/xiaofang/Assets/Obi/Scripts/Common/DataStructures/CellSpan.cs

18 lines
281 B
C#
Raw Normal View History

2024-12-18 02:18:45 +08:00
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;
}
}
}