bgammon/pkg/server/account.go

25 lines
421 B
Go

package server
type account struct {
id int
email []byte
username []byte
password []byte
autoplay bool
highlight bool
pips bool
moves bool
flip bool
traditional bool
advanced bool
muteJoinLeave bool
muteChat bool
muteRoll bool
muteMove bool
muteBearOff bool
speed int8
casual *clientRating
competitive *clientRating
}