Heroes_of_Hiis/Assets/Polaris - Low Poly Ecosystem/Polaris - Low Poly Terrain .../Runtime/Scripts/Utilities/GOverlapTestResult.cs

16 lines
295 B
C#

#if GRIFFIN
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace Pinwheel.Griffin
{
public struct GOverlapTestResult
{
public GStylizedTerrain Terrain;
public bool IsOverlapped;
public bool[] IsChunkOverlapped;
}
}
#endif