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