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, List memory) { return new float[1]{ 1f }; } public List MakeMemory(List state, List observation, float reward, bool done, List memory) { return new List(); } }