コード例 #1
0
 /// <summary>
 /// Create a new instance of the GBXRemote client.
 /// </summary>
 /// <param name="host">The address to the TrackMania server. Default: 127.0.0.1</param>
 /// <param name="port">The port the XML-RPC server is listening to on your TrackMania server. Default: 5000</param>
 public GbxRemoteClient(string host, int port, GbxRemoteClientOptions options) : base(host, port)
 {
     OnCallback += GbxRemoteClient_OnCallback;
     Options     = options;
 }
コード例 #2
0
 /// <summary>
 /// Create a new instance of the GBXRemote client.
 /// </summary>
 /// <param name="host">The address to the TrackMania server. Default: 127.0.0.1</param>
 /// <param name="port">The port the XML-RPC server is listening to on your TrackMania server. Default: 5000</param>
 public GbxRemoteClient(string host, int port) : base(host, port)
 {
     OnCallback += GbxRemoteClient_OnCallback;
     Options     = new();
 }