using System.Collections; using System.Collections.Generic; using UnityEngine; public class BasicDecision : MonoBehaviour, Decision { public float[] Decide(List state, List observation, float reward, bool done, float[] memory) { return new float[1]{ 1f }; } public float[] MakeMemory(List state, List observation, float reward, bool done, float[] memory) { return new float[0]; } }