AIsOfCatan.Trade.Respond C# (CSharp) Method

Respond() public method

public Respond ( List give, List take ) : ITrade
give List
take List
return ITrade
        public ITrade Respond(List<Resource> give, List<Resource> take)
        {
            return new Trade(new List<List<Resource>> {give}, new List<List<Resource>> {take})
                {
                    Status = TradeStatus.Countered
                };
        }