mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-27 11:54:41 +00:00
11 lines
221 B
C#
11 lines
221 B
C#
|
namespace AppGame.Systems.CServer
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 客户端角色
|
|||
|
/// </summary>
|
|||
|
public enum JNGClientRole : int
|
|||
|
{
|
|||
|
Player, //玩家
|
|||
|
SlaveServer //从服务器
|
|||
|
}
|
|||
|
}
|