Пример #1
0
        public Region(int id, SuperRegion superRegion, String playerName, int armies)
        {
            this.Id          = id;
            this.SuperRegion = superRegion;
            this.Neighbors   = new List <Region>();
            this.PlayerName  = playerName;
            this.Armies      = armies;

            superRegion.AddSubRegion(this);
        }
Пример #2
0
        public Region(int id, SuperRegion superRegion)
        {
            this.Id          = id;
            this.SuperRegion = superRegion;
            this.Neighbors   = new List <Region>();
            this.PlayerName  = Constants.UnknownPlayerName;
            this.Armies      = 0;

            superRegion.AddSubRegion(this);
        }