mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
15 lines
257 B
C#
15 lines
257 B
C#
using Plugins.JNGame.Network.Action;
|
|
|
|
namespace AppGame
|
|
{
|
|
public enum GActionEnum : int
|
|
{
|
|
|
|
//绑定客户端Id
|
|
BindClientID = 10100,
|
|
|
|
//绑定客户端角色
|
|
BindClientRole = 10101,
|
|
|
|
}
|
|
} |