AIsOfCatan.Log.PlayRoadBuildingLogEvent.PlayRoadBuildingLogEvent C# (CSharp) Method

PlayRoadBuildingLogEvent() public method

public PlayRoadBuildingLogEvent ( int player, Edge first, Edge second = null ) : System
player int
first Edge
second Edge
return System
        public PlayRoadBuildingLogEvent(int player, Edge first, Edge second = null)
        {
            Player = player;
            this.First = first;
            this.Second = second;
        }
PlayRoadBuildingLogEvent