AIsOfCatan.API.Edge.Edge C# (CSharp) Method

Edge() public method

public Edge ( int first, int second ) : System
first int
second int
return System
        public Edge(int first, int second)
        {
            FirstTile = first < second ? first : second;
            SecondTile = first < second ? second : first;
        }