18 lines
339 B
C#
18 lines
339 B
C#
using System;
|
|
|
|
namespace Mirror.SimpleWeb
|
|
{
|
|
[Serializable]
|
|
public struct ClientWebsocketSettings
|
|
{
|
|
public WebsocketPortOption ClientPortOption;
|
|
public ushort CustomClientPort;
|
|
}
|
|
public enum WebsocketPortOption
|
|
{
|
|
DefaultSameAsServer,
|
|
MatchWebpageProtocol,
|
|
SpecifyPort
|
|
}
|
|
}
|