13 lines
227 B
C#
Raw Normal View History

2024-11-24 19:33:12 +08:00
namespace Samples.AppGame
2024-08-17 14:27:18 +08:00
{
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
}
}