File tree Expand file tree Collapse file tree
internal/autobuild/domain Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package domain
22
3+ type (
4+ ChampionRef struct {
5+ ID int
6+ Name string
7+ }
8+ ChampSelectState struct {
9+ SessionKey string
10+ EnemyChampions []ChampionRef
11+ }
12+ )
13+
314const MaxMatchupChampionIDs = 5
415
516func MatchupChampionIDsForRoster (requested []int , roster []ChampionRef , limit int ) []int {
Original file line number Diff line number Diff line change @@ -17,12 +17,6 @@ type ApplyItemSetBlock struct {
1717 ItemIDs []int
1818}
1919
20- type RunePage struct {
21- PrimaryStyleID int
22- SubStyleID int
23- SelectedPerkIDs []int
24- }
25-
2620type ApplyRunePageRequest struct {
2721 ChampionID int
2822 ChampionName string
@@ -48,16 +42,6 @@ type DetectedSelection struct {
4842 EnemyChampions []ChampionRef
4943}
5044
51- type ChampionRef struct {
52- ID int
53- Name string
54- }
55-
56- type ChampSelectState struct {
57- SessionKey string
58- EnemyChampions []ChampionRef
59- }
60-
6145type LCUEvent struct {
6246 EventType string
6347 URI string
Original file line number Diff line number Diff line change 11package domain
22
3+ type RunePage struct {
4+ PrimaryStyleID int
5+ SubStyleID int
6+ SelectedPerkIDs []int
7+ }
8+
39const (
410 RuneStylePrecision = 8000
511 RuneStyleDomination = 8100
You can’t perform that action at this time.
0 commit comments