11 lines
202 B
C#
11 lines
202 B
C#
using System;
|
|
|
|
namespace MafiaServer
|
|
{
|
|
public class MainConfig
|
|
{
|
|
public int Port = 25743;
|
|
public string ServerName = "Test server";
|
|
public int MaxPlayers = 20;
|
|
}
|
|
} |