// Unit Details.

        public SquadInfo(string owner, string name, string ident, SquadStanding standings, Vector2Int source, Vector2Int destination, Vector2Int location, bool isTraveling)
        {
            this.owner       = owner;
            this.name        = name;
            this.ident       = ident;
            this.standings   = standings;
            this.source      = source;
            this.destination = destination;
            this.location    = location;
            this.isTraveling = isTraveling;
        }
 // Unit Details.
 public SquadInfo(string owner, string name, string ident, SquadStanding standings, Vector2Int source, Vector2Int destination, Vector2Int location, bool isTraveling)
 {
     this.owner = owner;
     this.name = name;
     this.ident = ident;
     this.standings = standings;
     this.source = source;
     this.destination = destination;
     this.location = location;
     this.isTraveling = isTraveling;
 }