mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-16 05:48:05 +00:00
19 lines
381 B
C#
19 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.GUI.Config
|
|
{
|
|
public class ServerInfo
|
|
{
|
|
public string Name = "Default";
|
|
public UInt16 Port = 8888;
|
|
public string Password = null;
|
|
public int MaxPlayers = 4;
|
|
public bool AllowSpectators = true;
|
|
public bool PublicServer = false;
|
|
}
|
|
}
|