namespace Assets.GAMA.net.Domain { public struct MinimalAgent { public int Index { get; set; } public GamaShape Shape { get; set; } public string Name { get; set; } public GamaPoint Destination { get; set; } public GamaPoint Location { get; set; } public double Heading { get; set; } public double Speed { get; set; } public double RealSpeed { get; set; } public GamaColor Color { get; set; } //public double CurrentEdge { get; set; } //public double CurrentPath { get; set; } } }