Files
LuaCsForBarotraumaEP/Libraries/Facepunch.Steamworks/ServerList/LocalNetwork.cs
2020-03-04 13:04:10 +01:00

16 lines
333 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()
{
request = Internal.RequestLANServerList( AppId.Value, IntPtr.Zero );
}
}
}