0
0
Fork 0
mirror of https://github.com/Sanae6/SmoOnlineServer.git synced 2024-11-16 00:25:07 +00:00
SmoOnlineServer/Shared/Packet/PacketType.cs

15 lines
208 B
C#
Raw Normal View History

2022-02-10 01:44:50 +00:00
namespace Shared.Packet;
2022-02-04 09:45:38 +00:00
public enum PacketType : short {
2022-02-04 09:45:38 +00:00
Unknown,
Player,
Cap,
Game,
Tag,
Connect,
Disconnect,
Costume,
Shine,
2022-02-08 16:22:09 +00:00
Capture,
2022-02-04 09:45:38 +00:00
Command
2021-11-29 04:04:34 +00:00
}