using System.Collections.Generic; using UnityEngine; namespace Module.ProjectValidator { public interface IGameObjectValidator { void Validate(GameObject gameObject, List results); } }