rogueserver/defs/daily.go

12 lines
270 B
Go
Raw Normal View History

2024-04-29 12:32:58 -07:00
// Copyright (C) 2024 Pagefault Games - All Rights Reserved
// https://github.com/pagefaultgames
2024-03-17 10:18:51 -07:00
package defs
type DailyRanking struct {
Rank int `json:"rank"`
Username string `json:"username"`
Score int `json:"score"`
Wave int `json:"wave"`
2024-03-17 10:18:51 -07:00
}