We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d220e01 commit 42df379Copy full SHA for 42df379
trackRTP.go
@@ -81,9 +81,9 @@ const (
81
)
82
83
type TrackIntToStringMap struct {
84
- posMap map[int]string
85
- catMap map[int]string
86
- subCatMap map[int]string
+ PosMap map[int]string
+ CatMap map[int]string
+ SubCatMap map[int]string
87
}
88
89
func NewMaps() *TrackIntToStringMap {
@@ -108,9 +108,9 @@ func NewMaps() *TrackIntToStringMap {
108
sm[SubCategoryJump] = "Jump"
109
110
return &TrackIntToStringMap{
111
- posMap: pm,
112
- catMap: cm,
113
- subCatMap: sm,
+ PosMap: pm,
+ CatMap: cm,
+ SubCatMap: sm,
114
115
116
0 commit comments