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

18 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Steamworks.ServerList
{
public class Internet : Base
{
internal override void LaunchQuery()
{
var filters = GetFilters();
request = Internal.RequestInternetServerList( AppId.Value, filters, (uint)filters.Length, IntPtr.Zero );
}
}
}