You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-14 22:26:29 +09:00
14 lines
257 B
C#
14 lines
257 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MSCommon
|
|
{
|
|
public static class CommonConstants
|
|
{
|
|
public const int MasterServerPort = 14343;
|
|
public const int GameServerPort = 14242;
|
|
}
|
|
}
|