15 lines
330 B
C#
15 lines
330 B
C#
|
/* INFINITY CODE */
|
|||
|
/* https://infinity-code.com */
|
|||
|
|
|||
|
using System;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace InfinityCode.MeshToTerrain
|
|||
|
{
|
|||
|
public class MeshToTerrainBoundsHelper : MonoBehaviour
|
|||
|
{
|
|||
|
public Action OnBoundChanged;
|
|||
|
public Action OnDestroyed;
|
|||
|
public Bounds bounds;
|
|||
|
}
|
|||
|
}
|