using System.Collections; using System.Collections.Generic; using UnityEngine; [System.Serializable] public class AgentData { public string id; public Vector3 position; public string type; public AgentData(string id, Vector3 position, string type) { this.id = id; this.position = position; this.type = type; } }