discord-jadx/app/src/main/java/com/discord/utilities/colors/RepresentativeColorsKt.java

22 lines
918 B
Java

package com.discord.utilities.colors;
import kotlin.Pair;
/* compiled from: RepresentativeColors.kt */
public final class RepresentativeColorsKt {
private static final RepresentativeColors<Pair<Long, Long>> GuildMemberRepresentativeColors = new RepresentativeColors<>();
private static final RepresentativeColors<Long> GuildRepresentativeColors = new RepresentativeColors<>();
private static final RepresentativeColors<Long> UserRepresentativeColors = new RepresentativeColors<>();
public static final RepresentativeColors<Pair<Long, Long>> getGuildMemberRepresentativeColors() {
return GuildMemberRepresentativeColors;
}
public static final RepresentativeColors<Long> getGuildRepresentativeColors() {
return GuildRepresentativeColors;
}
public static final RepresentativeColors<Long> getUserRepresentativeColors() {
return UserRepresentativeColors;
}
}