16 lines
343 B
C#
16 lines
343 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 LocalNetwork : Base
|
|
{
|
|
internal override void LaunchQuery()
|
|
{
|
|
request = Internal.RequestLANServerList( AppId.Value, IntPtr.Zero );
|
|
}
|
|
}
|
|
} |