11 lines
259 B
C#
11 lines
259 B
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public interface IFaceRecognizer
|
||
|
{
|
||
|
void BindListener(Action<FaceInfo[]> onRecognizedHandler);
|
||
|
void RemoveListener(Action<FaceInfo[]> onRecognizedHandler);
|
||
|
}
|