RoboidControl-csharp/RemoteParticipant.cs
2025-02-04 16:28:20 +01:00

18 lines
376 B
C#

namespace Passer.Control.Core {
public class RemoteParticipant {
public string ipAddress = "0.0.0.0";
public int port = 0;
public byte networkId;
public RemoteParticipant() {
}
public RemoteParticipant(string ipAddress, int port) {
this.ipAddress = ipAddress;
this.port = port;
}
}
}