mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-16 13:56:48 +00:00
16 lines
290 B
C#
16 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.GUI.Config
|
|
{
|
|
public class ClientConnectionInfo
|
|
{
|
|
public string Host = "localhost";
|
|
public UInt16 Port = 8888;
|
|
public bool Spectator = false;
|
|
}
|
|
}
|