Client LuaCsForBarotrauma
EosP2PConnection.cs
1 #nullable enable
2 
3 namespace Barotrauma.Networking;
4 
5 sealed class EosP2PConnection : P2PConnection<EosP2PEndpoint>
6 {
7  public EosP2PConnection(EosP2PEndpoint endpoint) : base(endpoint) { }
8  public override bool AddressMatches(NetworkConnection other)
9  => Endpoint == other.Endpoint;
10 }
EosP2PConnection(EosP2PEndpoint endpoint)
override bool AddressMatches(NetworkConnection other)