示例#1
0
        public DraftClass()
        {
            draftconfig = new DraftConfig();
            rookies     = new List <Player>();
            scores      = new List <Combine>();
            comments    = new Dictionary <int, List <string> >();
            consensus   = new Dictionary <int, List <int> >();
            skillset    = new List <int>();

            #region positions
            qb    = new Dictionary <int, int>();
            hb    = new Dictionary <int, int>();
            wr    = new Dictionary <int, int>();
            fb    = new Dictionary <int, int>();
            te    = new Dictionary <int, int>();
            lg    = new Dictionary <int, int>();
            rg    = new Dictionary <int, int>();
            lt    = new Dictionary <int, int>();
            rt    = new Dictionary <int, int>();
            c     = new Dictionary <int, int>();
            dt    = new Dictionary <int, int>();
            le    = new Dictionary <int, int>();
            re    = new Dictionary <int, int>();
            cb    = new Dictionary <int, int>();
            lolb  = new Dictionary <int, int>();
            rolb  = new Dictionary <int, int>();
            mlb   = new Dictionary <int, int>();
            fs    = new Dictionary <int, int>();
            ss    = new Dictionary <int, int>();
            p     = new Dictionary <int, int>();
            k     = new Dictionary <int, int>();
            total = new Dictionary <int, int>();
            #endregion
        }
示例#2
0
        public void InitDraftClass()
        {
            rookies   = new List <Player>();
            scores    = new List <Combine>();
            consensus = new Dictionary <int, List <int> >();
            comments  = new Dictionary <int, List <string> >();
            DraftConfig           config      = new DraftConfig();
            Dictionary <int, int> rookieclass = new Dictionary <int, int>();

            #region positions
            qb    = new Dictionary <int, int>();
            hb    = new Dictionary <int, int>();
            wr    = new Dictionary <int, int>();
            fb    = new Dictionary <int, int>();
            te    = new Dictionary <int, int>();
            lg    = new Dictionary <int, int>();
            rg    = new Dictionary <int, int>();
            lt    = new Dictionary <int, int>();
            rt    = new Dictionary <int, int>();
            c     = new Dictionary <int, int>();
            dt    = new Dictionary <int, int>();
            le    = new Dictionary <int, int>();
            re    = new Dictionary <int, int>();
            cb    = new Dictionary <int, int>();
            lolb  = new Dictionary <int, int>();
            rolb  = new Dictionary <int, int>();
            mlb   = new Dictionary <int, int>();
            fs    = new Dictionary <int, int>();
            ss    = new Dictionary <int, int>();
            p     = new Dictionary <int, int>();
            k     = new Dictionary <int, int>();
            total = new Dictionary <int, int>();
            #endregion

            int eliteplayers = GetRandomInt(5, 11);
            int firstround   = 32 - eliteplayers;
        }