24 lines
459 B
C#
24 lines
459 B
C#
namespace ExitGames.Client.Photon.Chat
|
|
{
|
|
public class ParameterCode
|
|
{
|
|
public const byte ApplicationId = 224;
|
|
|
|
public const byte Secret = 221;
|
|
|
|
public const byte AppVersion = 220;
|
|
|
|
public const byte ClientAuthenticationType = 217;
|
|
|
|
public const byte ClientAuthenticationParams = 216;
|
|
|
|
public const byte ClientAuthenticationData = 214;
|
|
|
|
public const byte Region = 210;
|
|
|
|
public const byte Address = 230;
|
|
|
|
public const byte UserId = 225;
|
|
}
|
|
}
|