12 lines
231 B
C#
12 lines
231 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
/// <summary>
|
|
/// This enum is used to identify each of the SignLanguage models
|
|
/// </summary>
|
|
public enum ModelIndex
|
|
{
|
|
NONE,
|
|
FINGERSPELLING
|
|
}
|