15 lines
257 B
C#
Raw Normal View History

2024-08-17 14:27:18 +08:00
using Plugins.JNGame.Network.Action;
namespace AppGame
{
public enum GActionEnum : int
{
//绑定客户端Id
2024-08-31 15:35:12 +08:00
BindClientID = 10100,
//绑定客户端角色
BindClientRole = 10101,
2024-08-17 14:27:18 +08:00
}
}