コード例 #1
0
        public PreGameStatisticsService(IMemoryCache cache, CurrentGameService cgs)
        {
            this.cache = cache;
            this.cgs   = cgs;
            check      = false;

            Run();

            // Unfortunate
            while (!check)
            {
            }
        }
コード例 #2
0
 public RegisterCurrentGameService(CurrentGameService cgs)
 {
     converter = new ConvertSteamIdToAccountId();
     this.cgs  = cgs;
 }