12 lines
247 B
C#
12 lines
247 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UnityEditor.Experimental.TerrainAPI
|
|||
|
{
|
|||
|
public interface IValidationTests
|
|||
|
{
|
|||
|
string ValidateAndGenerateUserMessage(Terrain terrain);
|
|||
|
}
|
|||
|
}
|