-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfactory_getter.go
More file actions
121 lines (101 loc) · 2.33 KB
/
Copy pathfactory_getter.go
File metadata and controls
121 lines (101 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package avatar
func (f *factory) Shapes() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.shapes)
}
func (f *factory) Palettes() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.palettes)
}
func (f *factory) Stickers() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.stickers)
}
func (f *factory) SkinColors() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.skinColors)
}
func (f *factory) HairColors() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.hairColors)
}
func (f *factory) MaleHairs() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleHairs)
}
func (f *factory) MaleBeards() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleBeards)
}
func (f *factory) MaleDresses() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleDresses)
}
func (f *factory) MaleEyes() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleEyes)
}
func (f *factory) MaleEyebrows() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleEyebrows)
}
func (f *factory) MaleMouths() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleMouths)
}
func (f *factory) MaleGlasses() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleGlasses)
}
func (f *factory) MaleAccessories() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.maleAccessories)
}
func (f *factory) FemaleHairs() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleHairs)
}
func (f *factory) FemaleDresses() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleDresses)
}
func (f *factory) FemaleEyes() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleEyes)
}
func (f *factory) FemaleEyebrows() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleEyebrows)
}
func (f *factory) FemaleMouths() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleMouths)
}
func (f *factory) FemaleGlasses() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleGlasses)
}
func (f *factory) FemaleAccessories() []string {
f.mutex.RLock()
defer f.mutex.RUnlock()
return mapKeys(f.femaleAccessories)
}