Files
LuaCsForBarotraumaEP/Libraries/Facepunch.Steamworks/ServerList/LocalNetwork.cs
2023-05-10 15:07:17 +03:00

17 lines
370 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Steamworks.ServerList
{
public class LocalNetwork : Base
{
internal override void LaunchQuery()
{
if (Internal is null) { return; }
request = Internal.RequestLANServerList( AppId.Value, IntPtr.Zero );
}
}
}