40 lines
692 B
C#
40 lines
692 B
C#
namespace ExitGames.Client.Photon.Chat
|
|
{
|
|
public class ChatParameterCode
|
|
{
|
|
public const byte Channels = 0;
|
|
|
|
public const byte Channel = 1;
|
|
|
|
public const byte Messages = 2;
|
|
|
|
public const byte Message = 3;
|
|
|
|
public const byte Senders = 4;
|
|
|
|
public const byte Sender = 5;
|
|
|
|
public const byte ChannelUserCount = 6;
|
|
|
|
public const byte UserId = 225;
|
|
|
|
public const byte MsgId = 8;
|
|
|
|
public const byte MsgIds = 9;
|
|
|
|
public const byte Secret = 221;
|
|
|
|
public const byte SubscribeResults = 15;
|
|
|
|
public const byte Status = 10;
|
|
|
|
public const byte Friends = 11;
|
|
|
|
public const byte SkipMessage = 12;
|
|
|
|
public const byte HistoryLength = 14;
|
|
|
|
public const byte WebFlags = 21;
|
|
}
|
|
}
|