module-project-validator/Runtime/Interfaces/IAssetValidator.cs
Anders Ejlersen dd55a87740 - Validator: Added asset validators with material texture and shader validation
- 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
2026-05-24 18:06:56 +02:00

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);
}
}