- Validator: Added option to enable/disable certain validators - Project Settings: Fixed issue, where changes weren't always saved - Unity: Removed deprecated warnings in Unity 6.4
10 lines
No EOL
227 B
C#
10 lines
No EOL
227 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Module.ProjectValidator
|
|
{
|
|
public interface IAssetValidator<in T> where T : Object
|
|
{
|
|
void Validate(T obj, List<ValidatorResult> results);
|
|
}
|
|
} |