コード例 #1
0
        public Iron()
        {
            max_users = 2;
            users     = new List <InternalEntities>(max_users);

            frequency       = 15;
            _gathererTicker = new GathererTicker(frequency);
        }
コード例 #2
0
ファイル: CropField.cs プロジェクト: GreenCalx/LD41
        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);
        }