Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/ExitGames/Client/Photon/Chat/ChatEventCode.cs
2026-02-21 16:45:37 +08:00

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;
}
}