mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-06-21 00:52:51 +02:00
10 lines
215 B
Go
10 lines
215 B
Go
// Copyright (C) 2024 Pagefault Games - All Rights Reserved
|
|
// https://github.com/pagefaultgames
|
|
|
|
package defs
|
|
|
|
type TitleStats struct {
|
|
PlayerCount int `json:"playerCount"`
|
|
BattleCount int `json:"battleCount"`
|
|
}
|