using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IFaceRecognizer { void BindListener(Action onRecognizedHandler); void RemoveListener(Action onRecognizedHandler); }