22 lines
502 B
C#
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 = "";
|
|
}
|
|
}
|