2015-07-03 00:12:02 -04:00
|
|
|
|
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;
|
2016-02-06 15:33:45 -05:00
|
|
|
|
public bool Spectator = false;
|
2015-07-03 00:12:02 -04:00
|
|
|
|
}
|
|
|
|
|
}
|