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