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

18 lines
435 B
C#

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