コード例 #1
0
ファイル: ClientCore.cs プロジェクト: Coflnet/cloud
 public ClientCore(CommandController commandController, ClientSocket socket, EntityManager manager)
 {
     this.commandController = commandController;
     this.socket            = socket;
     socket.AddCallback(OnMessage);
     this.EntityManager = manager;
     this.EntityManager.coreInstance = this;
 }