Exemplo n.º 1
0
        public void PossibleStartServer()
        {
            GlobalDataModel global = Open(_isXF);

            if (global.ServerMode != EnumServerMode.MobileServer)
            {
                return;
            }
            _tcpServer = new BasicGameServerTCP();
            _tcpServer.StartServer(); //hopefully this simple.
        }
Exemplo n.º 2
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);



            IGlobalDataModel global = new GlobalDataModel();

            global.LoadConnections();
            foreach (var conn in GlobalData.ConnectionInfos)
            {
                conn.Status     = EConnectivityStatus.Unknown;
                conn.IsModified = false;
            }


            ShowConnectionManager();
        }
 public ClientTCPClass(GlobalDataModel data)
 {
     _data = data;
 }
Exemplo n.º 4
0
 public NetworkStartUp(GlobalDataModel global)
 {
     _global = global;
 }
 public SignalRAzureEndPoint(GlobalDataModel global)
 {
     _global = global;
 }