Files
LuaCsForBarotraumaEP/Libraries/Facepunch.Steamworks/ServerList/History.cs
2025-06-17 16:38:11 +03:00

15 lines
353 B
C#

using System;
namespace Steamworks.ServerList
{
public class History : Base
{
internal override void LaunchQuery()
{
if (Internal is null) { return; }
using var filters = new ServerFilterMarshaler( GetFilters() );
request = Internal.RequestHistoryServerList( AppId.Value, filters.Pointer, (uint)filters.Count, IntPtr.Zero );
}
}
}