Пример #1
0
        public Iron()
        {
            max_users = 2;
            users     = new List <InternalEntities>(max_users);

            frequency       = 15;
            _gathererTicker = new GathererTicker(frequency);
        }
Пример #2
0
        public CropField()
        {
            max_users = 3;
            users     = new List <InternalEntities>(max_users);

            frequency       = 30;
            _gathererTicker = new GathererTicker(frequency);
        }
Пример #3
0
        public Rocks()
        {
            max_users = 1;
            users     = new List <InternalEntities>(max_users);

            frequency       = 20;
            _gathererTicker = new GathererTicker(frequency);
        }