コード例 #1
0
ファイル: Player.cs プロジェクト: W8023Y2014/jsion
 public Player(PlayerInfo info, ClientBase client)
 {
     PlayerID = info.PlayerID;
     Account = info.Account;
     NickName = info.NickName;
     Client = client;
     Client.Player = this;
 }
コード例 #2
0
ファイル: GatewayPlayer.cs プロジェクト: W8023Y2014/jsion
 public GatewayPlayer(PlayerInfo info, GatewayClient client)
     : base(info, client)
 {
     //GClient = client;
 }
コード例 #3
0
ファイル: CenterPlayer.cs プロジェクト: W8023Y2014/jsion
 public CenterPlayer(PlayerInfo info, ClientBase client)
     : base(info, client)
 {
 }