Files
BoneSync/Facepunch.Steamworks/ServerList/Internet.cs
2025-02-25 12:58:41 +02:00

18 lines
411 B
C#

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