Ejemplo n.º 1
0
            public int CompareTo(InitPair other)
            {
                int result = other.Initiative.CompareTo(Initiative);

                if (result != 0)
                {
                    return(result);
                }

                return(Actor.Id.CompareTo(other.Actor.Id));
            }
Ejemplo n.º 2
0
 public InitPair(InitPair other)
     : this(other.Actor, other.Initiative)
 {
 }