public PaginatedBeatmapContainer(BeatmapSetType type, Bindable <User> user, string header, string missing = "None... yet.")
            : base(user, header, missing)
        {
            this.type = type;

            ItemsPerPage = 6;

            ItemsContainer.Spacing = new Vector2(panel_padding);
        }
 public PaginatedBeatmapContainer(BeatmapSetType type, Bindable <User> user, string headerText)
     : base(user, headerText)
 {
     this.type    = type;
     ItemsPerPage = 6;
 }
 public GetUserBeatmapsRequest(long userId, BeatmapSetType type, int offset = 0)
 {
     this.userId = userId;
     this.offset = offset;
     this.type   = type;
 }
 public GetUserBeatmapsRequest(long userId, BeatmapSetType type, int page = 0, int itemsPerPage = 6)
     : base(page, itemsPerPage)
 {
     this.userId = userId;
     this.type   = type;
 }
 public GetUserBeatmapsRequest(long userId, BeatmapSetType type, PaginationParameters pagination)
     : base(pagination)
 {
     this.userId = userId;
     this.type   = type;
 }
Exemple #6
0
 //  這段代碼因原Repo變動 暫時被覆蓋
 //        public PaginatedBeatmapContainer(BeatmapSetType type, Bindable<User> user, string header, string missing = "暫時... 還沒有.")
 //    : base(user, header, missing)
 public PaginatedBeatmapContainer(BeatmapSetType type, Bindable <User> user, string headerText)
     : base(user, headerText, "", CounterVisibilityState.AlwaysVisible)
 {
     this.type    = type;
     ItemsPerPage = 6;
 }
 public PaginatedBeatmapContainer(BeatmapSetType type, Bindable <APIUser> user, LocalisableString headerText)
     : base(user, headerText)
 {
     this.type = type;
 }