using System; using UnityEngine; using Unity.Barracuda; /// /// Small class to link a model to a courseIndex irrespective of its position in a list /// [Serializable] public class ModelTuple { /// /// ModelIndex to which the model corresponds /// public ModelIndex index; /// /// The model itself /// public NNModel model; }