mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-15 16:52:34 +00:00
17 lines
228 B
Ruby
17 lines
228 B
Ruby
class W3DHub
|
|
# Maybe add remote game launch from server list app?
|
|
class MulticastServer
|
|
MULTICAST_ADDR = "224.87.51.68"
|
|
PORT = 7050
|
|
|
|
def initialize
|
|
end
|
|
|
|
def listen
|
|
end
|
|
|
|
def stop
|
|
end
|
|
end
|
|
end
|