20 lines
339 B
C#
20 lines
339 B
C#
namespace ExitGames.Client.Photon.Chat
|
|
{
|
|
public class ChatEventCode
|
|
{
|
|
public const byte ChatMessages = 0;
|
|
|
|
public const byte Users = 1;
|
|
|
|
public const byte PrivateMessage = 2;
|
|
|
|
public const byte FriendsList = 3;
|
|
|
|
public const byte StatusUpdate = 4;
|
|
|
|
public const byte Subscribe = 5;
|
|
|
|
public const byte Unsubscribe = 6;
|
|
}
|
|
}
|