Remove icons and overlays from client, I will be doing this on some api

This commit is contained in:
2025-08-28 00:37:03 -07:00
parent a309d16397
commit ac1374038c
30 changed files with 36 additions and 14 deletions

View File

@@ -6,4 +6,5 @@ export interface LeaderboardEntry {
overlay: number
birdColor: number[]
overlayColor: number[]
customIcon: string | null
}

View File

@@ -0,0 +1,6 @@
import { LeaderboardEntry } from './LeaderboardEntry'
export interface LeaderboardResponse {
entries: LeaderboardEntry[]
customIcons: Record<string, string>
}