25 lines
525 B
C#
25 lines
525 B
C#
public class UFS2PunEvent
|
|
{
|
|
public const byte FishUpdate = 0;
|
|
|
|
public const byte FishDelete = 1;
|
|
|
|
public const byte FishControlRequest = 2;
|
|
|
|
public const byte FishControlRequestCancel = 3;
|
|
|
|
public const byte FishDeleteAfterInteraction = 4;
|
|
|
|
public const byte ChatMessage = 10;
|
|
|
|
public const byte ChatMessageJoin = 11;
|
|
|
|
public const byte ChatMessageLeave = 12;
|
|
|
|
public const byte ChatMessageFishCatch = 13;
|
|
|
|
public const byte ChatRequestPreviousMessages = 14;
|
|
|
|
public const byte ChatReceivePreviousMessages = 15;
|
|
}
|