...

Source file src/go.formulabun.club/site/data/structs.go

Documentation: go.formulabun.club/site/data

     1  package data
     2  
     3  type SiteData struct {
     4  	ServerInfo *ServerInfo
     5  	Players    []Player
     6  	Maps       []string
     7  	Characters []string
     8  	Mods       []string
     9  	Other      []string
    10  }
    11  
    12  type ServerInfo struct {
    13  	MapName *string
    14  	Time    string
    15  }
    16  
    17  type Player struct {
    18  	PlayerName  *string
    19  	Skin        *string
    20  	Score       *float32
    21  	IsSpectator bool
    22  }
    23  

View as plain text