using System.Collections.Generic; using UnityEngine; public class TemplateDecision : MonoBehaviour, Decision { public float[] Decide( List vectorObs, List visualObs, float reward, bool done, List memory) { return new float[0]; } public List MakeMemory( List vectorObs, List visualObs, float reward, bool done, List memory) { return new List(); } }