AIsOfCatan.API.Edge.Edge C# (CSharp) Méthode

Edge() public méthode

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