Mesen-SX/UI/Config/NetplayConfig.cs
2019-10-20 21:23:48 -04:00

22 lines
502 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Mesen.GUI.Config
{
public class NetplayConfig : BaseConfig<VideoConfig>
{
public string Host = "localhost";
public UInt16 Port = 8888;
public string Password = "";
public string PlayerName = "PlayerName";
public string ServerName = "Default";
public UInt16 ServerPort = 8888;
public string ServerPassword = "";
}
}