Пример #1
0
        public Dictionary <string, Tuple <string, string> > playerVessels = new Dictionary <string, Tuple <string, string> >(); // Registry of in-game vessel names with actual player and vessel names.


        public BDAScoreClient(BDAScoreService service, string vesselPath, string hash)
        {
            this.baseUrl         = "https://" + BDArmorySettings.REMOTE_ORCHESTRATION_BASE_URL;
            this.service         = service;
            this.vesselPath      = vesselPath + "/" + hash;
            this.competitionHash = hash;
        }
Пример #2
0
        void Awake()
        {
            if (Instance)
            {
                Destroy(Instance);
            }

            Instance = this;
        }
Пример #3
0
 public BDAScoreClient(BDAScoreService service, string vesselPath, string hash)
 {
     this.service         = service;
     this.vesselPath      = vesselPath + "/" + hash;
     this.competitionHash = hash;
 }