mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 05:57:47 +00:00
GEEKING
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
using Roblox.Grid.Arbiter.Common.Arbiter;
|
||||
|
||||
namespace Roblox.Grid.Arbiter.Common
|
||||
{
|
||||
public class ArbiterServiceUtils
|
||||
{
|
||||
public static ArbiterClient GetService(string Address) => GetService(Address, 64990);
|
||||
public static ArbiterClient GetService(string Address, int port)
|
||||
{
|
||||
if (Address == null) return null;
|
||||
return new ArbiterClient("RccServiceMonitor", "http://" + Address + ":" + port.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user