using System.Collections.Generic; using UnityEngine; namespace Module.ProjectValidator { public interface IAssetValidator where T : Object { void Validate(T obj, List results); } }