7 lines
103 B
C#
7 lines
103 B
C#
namespace GServer.Common;
|
|
|
|
public enum ServerTier : byte
|
|
{
|
|
Default = 0,
|
|
Listed = 1
|
|
}
|