Add missing struct fields

This commit is contained in:
wrefgtzweve 2022-04-14 18:39:08 +02:00 committed by plally
parent ab6e12a9a3
commit b8b2bc9d60

View File

@ -20,12 +20,14 @@ type EventStruct struct {
}
type EventData struct {
Type string
Content string
Avatar string
SteamName string
SteamId string
IrisId string
Type string
Content string
Avatar string
SteamName string
SteamId string
IrisId string
PlayerCountMax string
PlayerCountCurrent string
}
var MessageQueue = make(chan []byte, 100)