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